Class ConvertException
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.ConvertException
- All Implemented Interfaces:
Serializable
类型: 转换异常
- 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
ConstructorsConstructorDescriptionConvertException(String message) ConvertException(String format, Object... params) ConvertException(String message, Throwable throwable) ConvertException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) 构造ConvertException(Throwable throwable) ConvertException(Throwable throwable, String format, Object... args) -
Method Summary
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
-
ConvertException
-
ConvertException
-
ConvertException
-
ConvertException
-
ConvertException
-
ConvertException
public ConvertException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) 构造- Parameters:
message- 消息cause- 被包装的子异常enableSuppression- 是否启用抑制writableStackTrace- 堆栈跟踪是否应该是可写的
-