Class NotExistsException

All Implemented Interfaces:
Serializable

public class NotExistsException extends UncheckedException
类型: 对象不存在
Since:
Java 17+
Author:
Kimi Liu
See Also:
  • Constructor Details

    • NotExistsException

      public NotExistsException()
      构造
    • NotExistsException

      public NotExistsException(Throwable e)
      构造
      Parameters:
      e - 异常
    • NotExistsException

      public NotExistsException(String message)
      构造
      Parameters:
      message - 消息
    • NotExistsException

      public NotExistsException(String format, Object... args)
      构造
      Parameters:
      format - 消息模板
      args - 参数
    • NotExistsException

      public NotExistsException(String errcode, String errmsg)
      构造
      Parameters:
      errcode - 错误码
      errmsg - 消息
    • NotExistsException

      public NotExistsException(String errcode, Throwable throwable)
      构造
      Parameters:
      errcode - 错误码
      throwable - 异常
    • NotExistsException

      public NotExistsException(Throwable cause, String format, Object... args)
      构造
      Parameters:
      cause - 被包装的子异常
      format - 消息模板
      args - 参数
    • NotExistsException

      public NotExistsException(String errcode, String errmsg, Throwable throwable)
      Parameters:
      errcode - 错误码
      errmsg - 消息
      throwable - 异常
    • NotExistsException

      public NotExistsException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      构造
      Parameters:
      message - 消息
      cause - 被包装的子异常
      enableSuppression - 是否启用抑制
      writableStackTrace - 堆栈跟踪是否应该是可写的