interface CordaThrowable
abstract var originalExceptionClassName: String? |
|
abstract val originalMessage: String? |
abstract fun addSuppressed(suppressed: Array<Throwable>): Unit |
|
abstract fun setCause(cause: Throwable?): Unit |
|
abstract fun setMessage(message: String?): Unit |
open class CordaException : Exception, CordaThrowable |
|
open class CordaRuntimeException : RuntimeException, CordaThrowable |