Class StorageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.ignite.IgniteCheckedException
-
- org.apache.ignite.internal.processors.cache.persistence.StorageException
-
- All Implemented Interfaces:
Serializable,InvalidEnvironmentException
public class StorageException extends IgniteCheckedException implements InvalidEnvironmentException
Exception is needed to distinguish WAL manager & page store critical I/O errors.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StorageException(IOException e)StorageException(String msg)StorageException(String msg, @NotNull IOException cause)
-
Method Summary
-
Methods inherited from class org.apache.ignite.IgniteCheckedException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
StorageException
public StorageException(String msg, @NotNull @NotNull IOException cause)
- Parameters:
msg- Error message.cause- Error cause.
-
StorageException
public StorageException(IOException e)
- Parameters:
e- Cause exception.
-
StorageException
public StorageException(String msg)
- Parameters:
msg- Error message
-
-