home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-09-10 | 923 b | 36 lines |
- // Copyright(c) 1996 ObjectSpace, Inc.
- // Portions Copyright(c) 1995, 1996 Hewlett-Packard Company.
-
- package jgl;
-
- /**
- * InvalidOperationException is a runtime exception that is thrown when a container
- * is asked to perform an inappropriate operation.
- * <p>
- * @version 1.1
- * @author ObjectSpace, Inc.
- */
-
- public class InvalidOperationException extends RuntimeException
- {
- /**
- * Constructs a InvalidOperationException with no detail message.
- * A detail message is a String that describes this particular exception.
- */
- public InvalidOperationException()
- {
- }
-
- /**
- * Constructs a InvalidOperationException with the specified detail message.
- * A detail message is a String that describes this particular exception.
- * @param message The detail message.
- */
- public InvalidOperationException( String message )
- {
- super( message );
- }
- }
-
-
-