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