KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > javaee > blueprints > autoid > InvalidItemException


1 /*
2  * Copyright 2006 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:
3  * http://developer.sun.com/berkeley_license.html
4  * $Id: InvalidItemException.java,v 1.1 2006/06/22 22:18:54 smitha Exp $
5  */

6
7 package com.sun.javaee.blueprints.autoid;
8
9 /**
10  * An application exception indicating something has gone wrong
11  * These are errors which the application could potentially
12  * take some corrective action on, such as asking a user to
13  * provide value for a field in the HTML form
14  */

15
16 public class InvalidItemException extends Exception JavaDoc {
17     public InvalidItemException() {}
18     public InvalidItemException(String JavaDoc msg) { super(msg); }
19     public InvalidItemException(String JavaDoc msg, Throwable JavaDoc cause) { super(msg, cause); }
20     public InvalidItemException(Throwable JavaDoc cause) { super(cause); }
21     
22 }
Popular Tags