
sf.common.exception.SmallOrmException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
The newest version!
package sf.common.exception;
public class SmallOrmException extends RuntimeException {
private static final long serialVersionUID = -6315329503841905147L;
public static final int CANNOT_GET_CONNECTION = 0;
public static final int SQL_EXCEPTION = 1;
public static final int CANNOT_GET_SQL = 2;
public static final int MAPPING_ERROR = 3;
//UNQUE 方法需要传入主键的个数与数据库期望的主键个数不一致
public static final int ID_EXPECTED_ONE_ERROR = 4;
//UNQUE 方法需要传入主键的个数与数据库期望的主键个数不一致
public static final int NOT_UNIQUE_ERROR = 5;
//SQL 脚本运行出错
public static final int SQL_SCRIPT_ERROR = 6;
//期望有id,但未发现有id
public static final int ID_NOT_FOUND = 7;
//SQL 脚本运行出错
public static final int TABLE_NOT_EXIST = 8;
//根据指定类创建实例出错
public static final int OBJECT_INSTANCE_ERROR = 9;
//dao2 未知类型
public static final int UNKNOW_MAPPER_SQL_TYPE = 10;
//dao2 接口函数 参数定义错误
public static final int ERROR_MAPPER_PARAMEER = 11;
//dao2 接口函数 参数定义错误
public static final int UNIQUE_EXCEPT_ERROR = 12;
//dao2 接口函数 参数定义错误
public static final int TAIL_CALL_ERROR = 13;
//dao2 复合主键,未找到相应值
public static final int ID_VALUE_ERROR = 14;
public static final int ID_AUTOGEN_ERROR = 15;
public static final int ORM_ERROR = 16;
public static final int ORM_LAZY_ERROR = 17;
public static final int TEMPLATE_PAGE_PARAS_ERROR = 18;
//从对象中获取属性异常
public static final int GET_OBJECT_PROPERTY_ERROR = 19;
//Query工具查询条件错误
public static final int QUERY_CONDITION_ERROR = 20;
//Query SQL 语法错误
public static final int QUERY_SQL_ERROR = 21;
// 注解定义错误
public static final int ANNOTATION_DEFINE_ERROR = 23;
int code;
public SmallOrmException() {
}
public SmallOrmException(String message) {
super(message);
}
public SmallOrmException(String message, Throwable cause) {
super(message, cause);
}
public SmallOrmException(Throwable cause) {
super(cause);
}
public SmallOrmException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public SmallOrmException(int code) {
this.code = code;
}
public SmallOrmException(int code, Exception e) {
super(e);
this.code = code;
}
public SmallOrmException(int code, String msg, Exception e) {
super(msg, e);
this.code = code;
}
public SmallOrmException(int code, String msg) {
super(msg);
this.code = code;
}
public int getCode() {
return code;
}
// public String toString(){
// super.toString()
// }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy