Class ComputeException

All Implemented Interfaces:
Serializable, TraceableException
Direct Known Subclasses:
NodeNotFoundException

public class ComputeException extends IgniteException
Compute exception base class.
See Also:
  • Constructor Details

    • ComputeException

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

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

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

      public ComputeException(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).
    • ComputeException

      public ComputeException(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).
    • ComputeException

      public ComputeException(int code, String message, 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).
    • ComputeException

      public ComputeException(UUID traceId, int code, String message, 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).