1 37 38 package com.sun.j2ee.blueprints.consumerwebsite.exceptions; 39 40 import com.sun.j2ee.blueprints.waf.controller.web.html.HTMLActionException; 41 42 45 public class CustomerException extends HTMLActionException { 46 47 public CustomerException() {} 48 public CustomerException(String msg) { super(msg); } 49 public CustomerException(Throwable cause) { super(cause); } 50 public CustomerException(String msg, Throwable cause) { super(msg, cause); } 51 } 52 | Popular Tags |