1 package org.objectweb.rentacar.persistance.dao; 2 3 7 public class DAOException extends Exception { 8 9 private static final long serialVersionUID = 1L; 10 11 public DAOException() { 12 super(); 13 } 14 15 19 public DAOException(String message, Throwable e) { 20 super(message, e); 21 } 22 23 26 public DAOException(Throwable e) { 27 super(e); 28 } 29 30 33 public DAOException(String message) { 34 super(message); 35 } 36 37 } 38 | Popular Tags |