ru.dmerkushov.dbhelper.DbHelperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of db-helper Show documentation
Show all versions of db-helper Show documentation
A lightweight library to help manage databases without DAO
/*
* Copyright 2013 dmerkushov.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ru.dmerkushov.dbhelper;
/**
*
* @author Dmitriy Merkushov
*/
public class DbHelperException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Creates a new instance of DbHelperException
without detail message.
*/
public DbHelperException () {
}
/**
* Constructs an instance of DbHelperException
with the specified detail message.
* @param msg the detail message.
*/
public DbHelperException (String msg) {
super (msg);
}
/**
* Constructs an instance of DbHelperException
with the specified cause.
* @param cause the cause (which is saved for later retrieval by the Exception.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
*/
public DbHelperException (Throwable cause) {
super (cause);
}
/**
* Constructs an instance of DbHelperException
with the specified detail message and cause.
* @param msg the detail message.
* @param cause the cause (which is saved for later retrieval by the Exception.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
*/
public DbHelperException (String msg, Throwable cause) {
super (msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy