Class InternalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.miaixz.bus.core.lang.exception.UncheckedException
org.miaixz.bus.core.lang.exception.InternalException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BeanException,CloneException,DateException,DependencyException,StatefulException
类型: 内部处理异常
- Since:
- Java 17+
- Author:
- Kimi Liu
- See Also:
-
Field Summary
Fields inherited from class org.miaixz.bus.core.lang.exception.UncheckedException
errcode, errmsg -
Constructor Summary
ConstructorsConstructorDescriptionInternalException(String message) InternalException(String format, Object... args) InternalException(String errcode, String errmsg) InternalException(String message, Throwable cause) InternalException(Throwable cause) InternalException(Throwable cause, String format, Object... args) -
Method Summary
Modifier and TypeMethodDescriptionbooleancauseInstanceOf(Class<? extends Throwable> clazz) 导致这个异常的异常是否是指定类型的异常Methods inherited from class org.miaixz.bus.core.lang.exception.UncheckedException
impossible, isCauseBy, noImplement, unwrapThrowMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InternalException
public InternalException() -
InternalException
-
InternalException
-
InternalException
-
InternalException
-
InternalException
-
InternalException
-
-
Method Details
-
causeInstanceOf
导致这个异常的异常是否是指定类型的异常- Parameters:
clazz- 异常类- Returns:
- 是否为指定类型异常
-