Improved error message obtention by looking into causes instead of the top level exception
4 lines
138 B
Kotlin
4 lines
138 B
Kotlin
package com.jetpackduba.gitnuro.exceptions
|
|
|
|
class CommandExecutionFailed(msg: String, cause: Exception) : GitnuroException(msg, cause) {
|
|
} |