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