Package de.stefanfrings.utils
Class TemplateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.stefanfrings.utils.TemplateException
-
- All Implemented Interfaces:
Serializable
public class TemplateException extends Exception
Indicates an error in a template- Author:
- Stefan Frings, http://stefanfrings.de/javautils
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TemplateException(String msg)
Constructor with message textTemplateException(String msg, Throwable cause)
Constructor with message text 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 Detail
-
TemplateException
public TemplateException(String msg, Throwable cause)
Constructor with message text and cause- Parameters:
msg
- Message textcause
- Cause of the problem
-
TemplateException
public TemplateException(String msg)
Constructor with message text- Parameters:
msg
- Message text
-
-