OctaviusException
abstract class OctaviusException(message: String, val sqlState: String? = null, val serverErrorMessage: ServerErrorMessage? = null, cause: Throwable? = null) : RuntimeException
Base exception for all errors in the Octavius JDBC driver.
Parameters
message
The exception identifier, formatted as EXCEPTION_NAME[:REASON_ENUM] for programmatic filtering.
cause
The underlying exception that caused this failure, if any.
Inheritors
Constructors
Link copied to clipboard
constructor(message: String, sqlState: String? = null, serverErrorMessage: ServerErrorMessage? = null, cause: Throwable? = null)