Package org.apache.ignite.internal
Class IgniteTooManyOpenFilesException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.ignite.IgniteException
-
- org.apache.ignite.internal.IgniteTooManyOpenFilesException
-
- All Implemented Interfaces:
Serializable
public class IgniteTooManyOpenFilesException extends IgniteException
Custom exception forSocketException
with Too many open files error message. It needs for failing node, if we got that exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IgniteTooManyOpenFilesException()
Create empty exception.IgniteTooManyOpenFilesException(String msg)
Creates new exception with given error message.IgniteTooManyOpenFilesException(String msg, @Nullable Throwable cause)
Creates new exception with given error message and optional nested exception.IgniteTooManyOpenFilesException(Throwable cause)
Creates new exception with given throwable as a cause and source of error message.
-
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
-
IgniteTooManyOpenFilesException
public IgniteTooManyOpenFilesException()
Create empty exception.
-
IgniteTooManyOpenFilesException
public IgniteTooManyOpenFilesException(String msg)
Creates new exception with given error message.- Parameters:
msg
- Error message.
-
IgniteTooManyOpenFilesException
public IgniteTooManyOpenFilesException(Throwable cause)
Creates new exception with given throwable as a cause and source of error message.- Parameters:
cause
- Non-null throwable cause.
-
-