1 37 38 package com.sun.j2ee.blueprints.customer; 39 40 45 public class CustomerException extends RuntimeException { 46 public CustomerException() {} 47 public CustomerException(String msg) { super(msg); } 48 public CustomerException(String msg, Throwable cause) { super(msg, cause); } 49 public CustomerException(Throwable cause) { super(cause); } 50 } 51 | Popular Tags |