diff --git a/node-api/src/main/kotlin/net/corda/nodeapi/internal/persistence/CordaPersistence.kt b/node-api/src/main/kotlin/net/corda/nodeapi/internal/persistence/CordaPersistence.kt index f9479b8442..6ab9191a5b 100644 --- a/node-api/src/main/kotlin/net/corda/nodeapi/internal/persistence/CordaPersistence.kt +++ b/node-api/src/main/kotlin/net/corda/nodeapi/internal/persistence/CordaPersistence.kt @@ -248,16 +248,6 @@ fun rx.Observable.wrapWithDatabaseTransaction(db: CordaPersistence? } } -/** Check if any nested cause is of [SQLException] type. */ -private fun Throwable.hasSQLExceptionCause(): Boolean = - when (cause) { - null -> false - is SQLException -> true - else -> cause?.hasSQLExceptionCause() ?: false - } - -class CouldNotCreateDataSourceException(override val message: String?, override val cause: Throwable? = null) : Exception() - class IncompatibleAttachmentsContractsTableName(override val message: String?, override val cause: Throwable? = null) : Exception() private fun checkCorrectAttachmentsContractsTableName(connection: Connection) {