CordaPersistenceException

class CordaPersistenceException(message: String, cause: Throwable?) : CordaRuntimeException

Exception that encapsulates errors during persistence.

Parameters

message

The exception message.

cause

Optional throwable that was caught.

Constructors

Link copied to clipboard
fun CordaPersistenceException(message: String)

Creates a CordaPersistenceException without a cause.

Link copied to clipboard
fun CordaPersistenceException(message: String, cause: Throwable?)

Creates a CordaPersistenceException with a cause.

Functions

Link copied to clipboard
fun addSuppressed(p0: Throwable)
open override fun addSuppressed(suppressed: Array<Throwable>)
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open fun fillInStackTrace(): Throwable
Link copied to clipboard
open fun getLocalizedMessage(): String
Link copied to clipboard
open fun getStackTrace(): Array<StackTraceElement>
Link copied to clipboard
fun getSuppressed(): Array<Throwable>
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open fun initCause(p0: Throwable): Throwable
Link copied to clipboard
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
Link copied to clipboard
open override fun setCause(cause: Throwable?)
Link copied to clipboard
open override fun setMessage(message: String?)
Link copied to clipboard
open fun setStackTrace(p0: Array<StackTraceElement>)

Properties

Link copied to clipboard
open override val cause: Throwable?
Link copied to clipboard
open override val message: String?
Link copied to clipboard
open override var originalExceptionClassName: String?
Link copied to clipboard
open override val originalMessage: String?