- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalCallerException
-
- All Implemented Interfaces:
-
Serializable
public class IllegalCallerException extends RuntimeException
被抛出来表示一个方法已被不适当的调用者调用。- 从以下版本开始:
- 9
- 另请参见:
-
StackWalker.getCallerClass()
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 IllegalCallerException()
构造一个没有详细消息的IllegalCallerException。IllegalCallerException(String s)
构造具有指定详细消息的IllegalCallerException。IllegalCallerException(String message, Throwable cause)
构造一个新的异常与指定的详细信息和原因。IllegalCallerException(Throwable cause)
构造具有指定的原因和详细消息的新异常(cause==null ? null : cause.toString())
(它通常包含的类和详细消息cause
)。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
IllegalCallerException
public IllegalCallerException()
构造一个没有详细消息的IllegalCallerException。
-
IllegalCallerException
public IllegalCallerException(String s)
构造具有指定详细消息的IllegalCallerException。- 参数
-
s
- 包含详细消息的字符串(可以为null)
-
IllegalCallerException
public IllegalCallerException(String message, Throwable cause)
构造一个新的异常与指定的详细信息和原因。- 参数
-
message
- 详细信息(可以为null) -
cause
- 原因(可以为null)
-
IllegalCallerException
public IllegalCallerException(Throwable cause)
构造具有指定的原因和详细消息的新异常(cause==null ? null : cause.toString())
(它通常包含的类和详细消息cause
)。- 参数
-
cause
- 原因(可以为null)
-
-