Improved error message obtention by looking into causes instead of the top level exception
3 lines
138 B
Kotlin
3 lines
138 B
Kotlin
package com.jetpackduba.gitnuro.exceptions
|
|
|
|
abstract class GitnuroException(msg: String, cause: Exception? = null) : Exception(msg, cause) |