/**
|
*
|
*/
|
package com.vci.server.base.persistence.dao;
|
|
/**
|
* @author Think
|
*
|
*/
|
public class JDBCException extends RuntimeException {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
/**
|
*
|
*/
|
public JDBCException() {
|
// TODO Auto-generated constructor stub
|
}
|
|
/**
|
* @param message
|
*/
|
public JDBCException(String message) {
|
super(message);
|
// TODO Auto-generated constructor stub
|
}
|
|
/**
|
* @param cause
|
*/
|
public JDBCException(Throwable cause) {
|
super(cause);
|
// TODO Auto-generated constructor stub
|
}
|
|
/**
|
* @param message
|
* @param cause
|
*/
|
public JDBCException(String message, Throwable cause) {
|
super(message, cause);
|
// TODO Auto-generated constructor stub
|
}
|
|
}
|