1 6 7 8 9 package com.sun.j2ee.blueprints.docoriented.client; 10 11 12 13 28 29 public class RequestHandlerException extends Exception { 30 31 32 33 public RequestHandlerException() {} 34 35 public RequestHandlerException(String msg) { super(msg); } 36 37 public RequestHandlerException(String msg, Throwable cause) { super(msg, cause); } 38 39 public RequestHandlerException(Throwable cause) { super(cause); } 40 41 } 42 43 | Popular Tags |