package org.theonefx.wcframework.jdbc.exception; /** * @Package org.theonefx.wcframework.jdbc.exception * @ClassName: TypeMismatchDataAccessException * @author 陈曦 * @date 2010-10-08 20:15:53 * @Description: 获取Statement失败异常 */ public class GetStatementFailureException extends InvalidDataAccessResourceUsageException { private static final long serialVersionUID = -1719250260959289198L; public GetStatementFailureException(String msg) { super(msg); } public GetStatementFailureException(String msg, Throwable cause) { super(msg, cause); } }