KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > common > exception > IllegalStateException


1 /*
2  * Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved.
3  * Use is subject to license terms.
4  */

5
6 package com.sun.enterprise.admin.common.exception;
7
8 public class IllegalStateException extends ControlException
9 {
10     /**
11         Creates new <code>IllegalStateException</code> without detail message.
12     */

13     public IllegalStateException()
14     {
15         super();
16     }
17
18     /**
19         Constructs an <code>IllegalStateException</code> with the specified
20         detail message.
21         @param msg the detail message.
22     */

23     public IllegalStateException(String JavaDoc msg)
24     {
25         super(msg);
26     }
27 }
Popular Tags