org.simpleframework.util
Class FormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.simpleframework.util.FormatException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- LeaseException
public class FormatException
- extends Exception
The FormatException is used to create exceptions that
can use a template string for the message. Each format exception
will accept a string and an ordered list of variables which can
be used to complete the exception message.
- Author:
- Niall Gallagher
- See Also:
- Serialized Form
|
Constructor Summary |
FormatException(String template,
Object... list)
Constructor for the FormatException this requires
a template message and an ordered list of values that are to
be inserted in to the provided template to form the error. |
FormatException(Throwable cause,
String template,
Object... list)
Constructor for the FormatException this requires
a template message and an ordered list of values that are to
be inserted in to the provided template to form the error. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
FormatException
public FormatException(String template,
Object... list)
- Constructor for the
FormatException this requires
a template message and an ordered list of values that are to
be inserted in to the provided template to form the error.
- Parameters:
template - this is the template string to be modifiedlist - this is the list of values that are to be inserted
FormatException
public FormatException(Throwable cause,
String template,
Object... list)
- Constructor for the
FormatException this requires
a template message and an ordered list of values that are to
be inserted in to the provided template to form the error.
- Parameters:
cause - this is the original cause of the exceptiontemplate - this is the template string to be modifiedlist - this is the list of values that are to be inserted
Copyright © 2013. All Rights Reserved.