Class UnexpectedNullValueException

All Implemented Interfaces:
Serializable, TraceableException

public class UnexpectedNullValueException extends IgniteException
This exception is thrown instead of returning a null value from a method that does not respect null-value to avoid ambiguity (whether the value is absent or is null).
See Also:
  • Constructor Details

    • UnexpectedNullValueException

      public UnexpectedNullValueException(String msg)
      Creates a new exception.
      Parameters:
      msg - Message.
    • UnexpectedNullValueException

      public UnexpectedNullValueException(UUID traceId, int code, String message, Throwable cause)
      Creates a new exception with the given trace id, error code, detail message and cause.
      Parameters:
      traceId - Unique identifier of this exception.
      code - Full error code.
      message - Detail message.
      cause - Optional nested exception (can be null).