Class IgniteHistoricalIteratorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.ignite.IgniteException
-
- org.apache.ignite.internal.processors.cache.distributed.dht.preloader.IgniteHistoricalIteratorException
-
- All Implemented Interfaces:
Serializable
public class IgniteHistoricalIteratorException extends IgniteException
Thrown whenIgniteHistoricalIteratorcannot iterate over WAL for some reason.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IgniteHistoricalIteratorException(String msg)Creates a new exception with the specified message.IgniteHistoricalIteratorException(String msg, Throwable cause)Creates a new exception with the specified message and cause.IgniteHistoricalIteratorException(Throwable cause)Creates a new exception with the specified cause.
-
Method Summary
-
Methods inherited from class org.apache.ignite.IgniteException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
IgniteHistoricalIteratorException
public IgniteHistoricalIteratorException(Throwable cause)
Creates a new exception with the specified cause.- Parameters:
cause- Cause.
-
IgniteHistoricalIteratorException
public IgniteHistoricalIteratorException(String msg, Throwable cause)
Creates a new exception with the specified message and cause.- Parameters:
msg- Detail message.cause- Cause.
-
IgniteHistoricalIteratorException
public IgniteHistoricalIteratorException(String msg)
Creates a new exception with the specified message.- Parameters:
msg- Detail message.
-
-