Package com.lokalized
Class LocalizedStringLoadingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.lokalized.LocalizedStringLoadingException
- All Implemented Interfaces:
Serializable
Exception which indicates a problem encountered while processing a localized strings file.
This class is intended for use by a single thread.
- Author:
- Mark Allen
- See Also:
-
Constructor Summary
ConstructorDescriptionLocalizedStringLoadingException
(String message) Constructs a new exception with the specified message.LocalizedStringLoadingException
(String message, Throwable cause) Constructs a new exception with the specified message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LocalizedStringLoadingException
Constructs a new exception with the specified message.- Parameters:
message
- the message to use for this exception, may be null
-
LocalizedStringLoadingException
Constructs a new exception with the specified message and cause.- Parameters:
message
- the message to use for this exception, may be nullcause
- the cause of the exception, may be null
-