Class NotExistsException
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.NotExistsException
- 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
ConstructorsConstructorDescription构造NotExistsException(String message) 构造NotExistsException(String format, Object... args) 构造NotExistsException(String errcode, String errmsg) 构造NotExistsException(String errcode, String errmsg, Throwable throwable) NotExistsException(String errcode, Throwable throwable) 构造NotExistsException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) 构造构造NotExistsException(Throwable cause, String format, Object... args) 构造 -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotExistsException
public NotExistsException()构造 -
NotExistsException
构造- Parameters:
e- 异常
-
NotExistsException
构造- Parameters:
message- 消息
-
NotExistsException
构造- Parameters:
format- 消息模板args- 参数
-
NotExistsException
构造- Parameters:
errcode- 错误码errmsg- 消息
-
NotExistsException
构造- Parameters:
errcode- 错误码throwable- 异常
-
NotExistsException
构造- Parameters:
cause- 被包装的子异常format- 消息模板args- 参数
-
NotExistsException
- Parameters:
errcode- 错误码errmsg- 消息throwable- 异常
-
NotExistsException
public NotExistsException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) 构造- Parameters:
message- 消息cause- 被包装的子异常enableSuppression- 是否启用抑制writableStackTrace- 堆栈跟踪是否应该是可写的
-