Most visited

Recently visited

Added in API level 1

IllegalStateException

public class IllegalStateException
extends RuntimeException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.IllegalStateException
Known Direct Subclasses


表示某个方法在非法或不适当的时间被调用。 换句话说,对于请求的操作,Java环境或Java应用程序不处于适当的状态。

Summary

Public constructors

IllegalStateException()

构造一个没有详细消息的IllegalStateException。

IllegalStateException(String s)

用指定的详细信息构造一个IllegalStateException。

IllegalStateException(String message, Throwable cause)

用指定的详细信息和原因构造一个新的异常。

IllegalStateException(Throwable cause)

构造具有指定的原因和 (cause==null ? null : cause.toString())详细消息(它通常包含的 cause类和详细消息)的新异常。

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

IllegalStateException

Added in API level 1
IllegalStateException ()

构造一个没有详细消息的IllegalStateException。 详细消息是描述此特定异常的字符串。

IllegalStateException

Added in API level 1
IllegalStateException (String s)

用指定的详细信息构造一个IllegalStateException。 详细消息是描述此特定异常的字符串。

Parameters
s String: the String that contains a detailed message

IllegalStateException

Added in API level 1
IllegalStateException (String message, 
                Throwable cause)

用指定的详细信息和原因构造一个新的异常。

请注意,与 cause相关的详细消息 不会自动包含在此例外的详细消息中。

Parameters
message String: the detail message (which is saved for later retrieval by the getMessage() method).
cause Throwable: the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

IllegalStateException

Added in API level 1
IllegalStateException (Throwable cause)

构造具有指定的原因和(cause==null ? null : cause.toString())详细消息(它通常包含的cause类和详细消息)的新异常。 此构造函数对于比其他throwables的包装稍微多些的异常(例如, PrivilegedActionException )非常有用。

Parameters
cause Throwable: the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

Hooray!