Package org.apache.ignite.compute
Class ComputeExecutionRejectedException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.compute.ComputeExecutionRejectedException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class ComputeExecutionRejectedException extends IgniteException This exception defines execution rejection. This exception is used to indicate the situation when execution service provided by the user in configuration rejects execution.
- 
- 
Constructor SummaryConstructors Constructor Description ComputeExecutionRejectedException(String msg)Creates new execution rejection exception with given error message.ComputeExecutionRejectedException(String msg, @Nullable Throwable cause)Creates new execution rejection exception with given error message and optional nested exception.ComputeExecutionRejectedException(Throwable cause)Creates new execution rejection given throwable as a cause and source of error message.
 - 
Method Summary- 
Methods inherited from class org.apache.ignite.IgniteExceptiongetCause, hasCause, toString
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
ComputeExecutionRejectedExceptionpublic ComputeExecutionRejectedException(String msg) Creates new execution rejection exception with given error message.- Parameters:
- msg- Error message.
 
 - 
ComputeExecutionRejectedExceptionpublic ComputeExecutionRejectedException(Throwable cause) Creates new execution rejection given throwable as a cause and source of error message.- Parameters:
- cause- Non-null throwable cause.
 
 - 
ComputeExecutionRejectedExceptionpublic ComputeExecutionRejectedException(String msg, @Nullable @Nullable Throwable cause) Creates new execution rejection exception with given error message and optional nested exception.- Parameters:
- msg- Error message.
- cause- Optional nested exception (can be- null).
 
 
- 
 
-