package com.jqmobile.core.orm.exception; public class ORMException extends Exception { /** * */ private static final long serialVersionUID = -8680545016797100897L; public ORMException(){ super(); } public ORMException(Throwable e) { super(e); } public ORMException(String msg){ super(msg); } public ORMException(String msg, Throwable e){ super(msg, e); } }