Gitnuro/src/main/kotlin/com/jetpackduba/gitnuro/exceptions/GitnuroException.kt
Abdelilah El Aissaoui 88bee8dfcd
Improved error message obtention
Improved error message obtention by looking into causes instead of the top level exception
2024-03-22 18:44:20 +01:00

3 lines
138 B
Kotlin

package com.jetpackduba.gitnuro.exceptions
abstract class GitnuroException(msg: String, cause: Exception? = null) : Exception(msg, cause)