
com.github.andyshaox.jdbc.JdbcProcessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GearEE Show documentation
Show all versions of GearEE Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshaox.jdbc;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Mar 9, 2016
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
public class JdbcProcessException extends RuntimeException {
private static final long serialVersionUID = 7913524297572935623L;
public JdbcProcessException() {
}
public JdbcProcessException(String message) {
super(message);
}
public JdbcProcessException(String message , Throwable exception) {
super(message , exception);
}
public JdbcProcessException(Throwable exception) {
super(exception);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy