Package org.apache.ignite.spi
Class IgniteSpiException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.spi.IgniteSpiException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 - Direct Known Subclasses:
- IgniteSpiMultiException,- IgniteSpiVersionCheckException
 
 public class IgniteSpiException extends IgniteException Exception thrown by SPI implementations.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description IgniteSpiException(String msg)Creates new SPI exception with given error message.IgniteSpiException(String msg, Throwable cause)Creates new SPI exception with given error message and optional nested exception.IgniteSpiException(Throwable cause)Creates new SPI exception 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- 
IgniteSpiExceptionpublic IgniteSpiException(String msg) Creates new SPI exception with given error message.- Parameters:
- msg- Error message.
 
 - 
IgniteSpiExceptionpublic IgniteSpiException(Throwable cause) Creates new SPI exception given throwable as a cause and source of error message.- Parameters:
- cause- Non-null throwable cause.
 
 
- 
 
-