Package com.fizzed.rocker.model
Class PostProcessorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.fizzed.rocker.model.PostProcessorException
-
- All Implemented Interfaces:
java.io.Serializable
public class PostProcessorException extends java.lang.Exception- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PostProcessorException(java.lang.String message)Create a new instance of aPostProcessorExceptionwith the given message.PostProcessorException(java.lang.String message, java.lang.Throwable cause)Create a new instance of aPostProcessorExceptionwith the given message and the causing Throwable.
-
-
-
Constructor Detail
-
PostProcessorException
public PostProcessorException(java.lang.String message)
Create a new instance of aPostProcessorExceptionwith the given message.- Parameters:
message- the error message
-
PostProcessorException
public PostProcessorException(java.lang.String message, java.lang.Throwable cause)Create a new instance of aPostProcessorExceptionwith the given message and the causing Throwable.- Parameters:
message- the error messagecause- theThrowablewhich caused this exception
-
-