Package org.svetovid.io
Class SvetovidIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.svetovid.SvetovidException
org.svetovid.io.SvetovidIOException
- All Implemented Interfaces:
Serializable
Signals that an I/O exception of some sort has occurred. This class is the
general class of exceptions produced by failed or interrupted I/O operations.
- Author:
- Ivan Pribela
- See Also:
-
Constructor Summary
ConstructorDescriptionSvetovidIOException
(String messageKey, IOException cause) Constructs aSvetovidIOException
with the specified cause.SvetovidIOException
(String messageKey, Object... messageArguments) Constructs aSvetovidIOException
with the specified message.SvetovidIOException
(String messageKey, Throwable cause, Object... messageArguments) Constructs aSvetovidIOException
with the specified detail message and cause. -
Method Summary
Methods inherited from class org.svetovid.SvetovidException
appendStackTrace, appendStackTraceElement, appendThreadInfo, appendThrowable, getMessage, getMessage, getStackTraceString, getStackTraceString, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
SvetovidIOException
Constructs aSvetovidIOException
with the specified message.- Parameters:
messageKey
- The resource bundle key of the detail message, which is saved for later retrieval by theSvetovidException.getMessage()
methodmessageArguments
- Optional arguments for formatting of the detail message
-
SvetovidIOException
Constructs aSvetovidIOException
with the specified detail message and cause.Note that the detail message associated with
cause
is not automatically incorporated into this exception's detail message.- Parameters:
messageKey
- The resource bundle key of the detail message, which is saved for later retrieval by theSvetovidException.getMessage()
methodcause
- The cause, which is saved for later retrieval by theThrowable.getCause()
method. A null value is permitted, and indicates that the cause is nonexistent or unknown.messageArguments
- Optional arguments for formatting of the detail message
-
SvetovidIOException
Constructs aSvetovidIOException
with the specified cause.Note that the detail message associated with
cause
is not automatically incorporated into this exception's detail message, but a generic one is used instead.- Parameters:
messageKey
- The resource bundle key of the detail message, which is saved for later retrieval by theSvetovidException.getMessage()
methodcause
- The cause, which is saved for later retrieval by theThrowable.getCause()
method. A null value is permitted, and indicates that the cause is nonexistent or unknown.
-