Package nom.tam.util
Class FormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
nom.tam.util.FormatException
- All Implemented Interfaces:
Serializable
Exception that is thrown if values do not appear in the format they are
expected. We could have just used the more mainstream
java.text.ParseException, but now it's too late to ponder if
that would have been a better choice.- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedFormatException(String msg) Instantiates this exception with the designated message string. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FormatException
Instantiates this exception with the designated message string.- Parameters:
msg- a human readable message that describes what in fact caused the exception
-