Package org.svetovid
Class SvetovidFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.svetovid.SvetovidException
org.svetovid.SvetovidFormatException
- All Implemented Interfaces:
Serializable
Signals that a parsing error of some sort has occurred.
- Author:
- Ivan Pribela
- See Also:
-
Constructor Summary
ConstructorDescriptionSvetovidFormatException
(Class<?> type, String string) Constructs aSvetovidFormatException
with the specified message.SvetovidFormatException
(Class<?> type, String string, Throwable cause) Constructs aSvetovidFormatException
with the specified detail message and cause.SvetovidFormatException
(String messageKey, String string, Throwable cause) Constructs aSvetovidFormatException
with the specified detail message and cause.SvetovidFormatException
(Throwable... causes) Constructs aSvetovidFormatException
with multiple suppressed causes.SvetovidFormatException
(IllegalFormatException cause, String string) Constructs aSvetovidFormatException
with the specified detail message and cause.SvetovidFormatException
(List<? extends Throwable> causes) Constructs aSvetovidFormatException
with multiple suppressed causes. -
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
-
SvetovidFormatException
Constructs aSvetovidFormatException
with the specified message.- Parameters:
type
- The type to which the string could not be parsedstring
- The string that could not be parsed
-
SvetovidFormatException
Constructs aSvetovidFormatException
with the specified detail message and cause.- Parameters:
type
- The type to which the string could not be parsedstring
- The string that could not be parsedcause
- The cause, if any
-
SvetovidFormatException
Constructs aSvetovidFormatException
with multiple suppressed causes.- Parameters:
causes
- The suppressed causes of this exception
-
SvetovidFormatException
Constructs aSvetovidFormatException
with multiple suppressed causes.- Parameters:
causes
- The suppressed causes of this exception
-
SvetovidFormatException
Constructs aSvetovidFormatException
with the specified detail message and cause.- Parameters:
messageKey
- The resource bundle key of the detail message, which is saved for later retrieval by theSvetovidException.getMessage()
methodstring
- The string that could not be parsedcause
- The cause, if any
-
SvetovidFormatException
Constructs aSvetovidFormatException
with the specified detail message and cause.- Parameters:
string
- The string that could not be parsedcause
- The cause of the format exception
-