Class NoConverterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.servlet.ServletException
com.blackrook.small.exception.request.NoConverterException
- All Implemented Interfaces:
Serializable
public class NoConverterException
extends javax.servlet.ServletException
Exception thrown when a converter for incoming/outgoing data cannot be read.
- Author:
- Matthew Tropiano
- See Also:
-
Constructor Summary
ConstructorDescriptionNoConverterException
(String message) Creates a new exception.NoConverterException
(String message, Throwable exception) Creates a new exception with a message and cause. -
Method Summary
Methods inherited from class javax.servlet.ServletException
getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoConverterException
Creates a new exception.- Parameters:
message
- the exception message.
-
NoConverterException
Creates a new exception with a message and cause.- Parameters:
message
- the exception message.exception
- the exception cause.
-