* Base class for Valdi exceptions. * Valdi exceptions should be thrown only for recoverable errors. */
| 7 | * Valdi exceptions should be thrown only for recoverable errors. |
| 8 | */ |
| 9 | @Keep |
| 10 | open class ValdiException(message: String, cause: Throwable?): RuntimeException(message, cause) { |
| 11 | |
| 12 | @Keep |
| 13 | constructor(message: String): this(message, null) |
| 14 | |
| 15 | } |
no outgoing calls
no test coverage detected