1 16 package com.ibatis.dao.client; 17 18 import com.ibatis.common.exception.NestedRuntimeException; 19 20 25 public class DaoException extends NestedRuntimeException { 26 27 public DaoException() { 28 } 29 30 public DaoException(String msg) { 31 super(msg); 32 } 33 34 public DaoException(Throwable cause) { 35 super(cause); 36 } 37 38 public DaoException(String msg, Throwable cause) { 39 super(msg, cause); 40 } 41 42 } 43 | Popular Tags |