1 37 38 package com.sun.j2ee.blueprints.util.dao; 39 40 import java.lang.RuntimeException ; 41 42 46 public class DAOSystemException extends RuntimeException { 47 48 public DAOSystemException() {} 49 public DAOSystemException(String msg) { super(msg); } 50 public DAOSystemException(String msg, Throwable cause) { 51 super(msg, cause); 52 } 53 public DAOSystemException(Throwable cause) { 54 super(cause); 55 } 56 } 57 | Popular Tags |