All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dbobjekts.api.exception.StatementExecutionException.kt Maven / Gradle / Ivy

There is a newer version: 0.6.0-RC2
Show newest version
package com.dbobjekts.api.exception

import java.sql.SQLException

/**
 * Custom exception to signal errors during execution of a statement or retrieval of results
 */
class StatementExecutionException(
    msg: String,
    throwable: Throwable?,
    val sql: String?
) : DBObjektsException(msg, throwable) {
    constructor(msg: String) : this(msg, null, null)
    constructor(msg: String, sql: String) : this(msg, null, sql)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy