Class IgniteFutureCancelledException

All Implemented Interfaces:
Serializable

public class IgniteFutureCancelledException extends IgniteException
Future computation cannot be retrieved because it was cancelled.
See Also:
  • Constructor Details

    • IgniteFutureCancelledException

      public IgniteFutureCancelledException(String msg)
      Creates new exception with given error message.
      Parameters:
      msg - Error message.
    • IgniteFutureCancelledException

      public IgniteFutureCancelledException(Throwable cause)
      Creates new exception with given throwable as a nested cause and source of error message.
      Parameters:
      cause - Non-null throwable cause.
    • IgniteFutureCancelledException

      public IgniteFutureCancelledException(String msg, Throwable cause)
      Creates a new exception with given error message and optional nested cause exception.
      Parameters:
      msg - Error message.
      cause - Optional nested exception (can be null).