Class CriteriaException

All Implemented Interfaces:
Serializable, TraceableException

public class CriteriaException extends IgniteException
Criteria exception base class.
See Also:
  • Constructor Details

    • CriteriaException

      public CriteriaException(int code)
      Creates an exception with the given error code.
      Parameters:
      code - Full error code.
    • CriteriaException

      public CriteriaException(UUID traceId, int code)
      Creates an exception with the given trace ID and error code.
      Parameters:
      traceId - Unique identifier of the exception.
      code - Full error code.
    • CriteriaException

      public CriteriaException(int code, String message)
      Creates an exception with the given error code and detailed message.
      Parameters:
      code - Full error code.
      message - Detailed message.
    • CriteriaException

      public CriteriaException(UUID traceId, int code, String message)
      Creates an exception with the given trace ID, error code, and detailed message.
      Parameters:
      traceId - Unique identifier of this exception.
      code - Full error code.
      message - Detailed message.
    • CriteriaException

      public CriteriaException(int code, Throwable cause)
      Creates an exception with the given error code and cause.
      Parameters:
      code - Full error code.
      cause - Optional nested exception (can be null).
    • CriteriaException

      public CriteriaException(UUID traceId, int code, Throwable cause)
      Creates an exception with the given trace ID, error code, and cause.
      Parameters:
      traceId - Unique identifier of the exception.
      code - Full error code.
      cause - Optional nested exception (can be null).
    • CriteriaException

      public CriteriaException(int code, String message, @Nullable @Nullable Throwable cause)
      Creates an exception with the given error code, detailed message, and cause.
      Parameters:
      code - Full error code.
      message - Detailed message.
      cause - Optional nested exception (can be null).
    • CriteriaException

      public CriteriaException(UUID traceId, int code, String message, @Nullable @Nullable Throwable cause)
      Creates an exception with the given trace ID, error code, detailed message, and cause.
      Parameters:
      traceId - Unique identifier of the exception.
      code - Full error code.
      message - Detailed message.
      cause - Optional nested exception (can be null).