KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > j2ee > blueprints > docoriented > client > RequestHandlerException


1 /* Copyright 2005 Sun Microsystems, Inc. All rights reserved. You may not modify, use, reproduce, or distribute this software except in compliance with the terms of the License at:
2
3  http://developer.sun.com/berkeley_license.html
4
5  $Id: RequestHandlerException.java,v 1.7 2005/05/31 23:29:56 sean_brydon Exp $ */

6
7
8
9 package com.sun.j2ee.blueprints.docoriented.client;
10
11
12
13 /**
14
15  * An application exception indicating something has gone wrong
16
17  * These are errors which the application could potentially
18
19  * take some corrective action on, such as asking a user to
20
21  * provide a date in a certain format or make sure all fields
22
23  * in a form have values
24
25  *
26
27  */

28
29 public class RequestHandlerException extends Exception JavaDoc {
30
31
32
33     public RequestHandlerException() {}
34
35     public RequestHandlerException(String JavaDoc msg) { super(msg); }
36
37     public RequestHandlerException(String JavaDoc msg, Throwable JavaDoc cause) { super(msg, cause); }
38
39     public RequestHandlerException(Throwable JavaDoc cause) { super(cause); }
40
41 }
42
43
Popular Tags