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