Class ProcessingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.openjpa.persistence.jest.ProcessingException
-
- All Implemented Interfaces:
java.io.Serializable
public class ProcessingException extends java.lang.RuntimeException
Specialized RuntimException thrown by JEST commands. The exception can be serialized to the output stream of a HTTP Servlet response as a HTML page.- Author:
- Pinaki Poddar
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessingException(JPAServletContext ctx, java.lang.Throwable error)
ProcessingException(JPAServletContext ctx, java.lang.Throwable error, int errorCode)
ProcessingException(JPAServletContext ctx, java.lang.Throwable error, Localizer.Message message)
ProcessingException(JPAServletContext ctx, java.lang.Throwable error, Localizer.Message message, int errorCode)
ProcessingException(JPAServletContext ctx, Localizer.Message message, int errorCode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
printStackTrace()
Prints the stack trace in a HTML format on the given response output stream.
-
-
-
Constructor Detail
-
ProcessingException
public ProcessingException(JPAServletContext ctx, java.lang.Throwable error)
-
ProcessingException
public ProcessingException(JPAServletContext ctx, java.lang.Throwable error, int errorCode)
-
ProcessingException
public ProcessingException(JPAServletContext ctx, Localizer.Message message, int errorCode)
-
ProcessingException
public ProcessingException(JPAServletContext ctx, java.lang.Throwable error, Localizer.Message message)
-
ProcessingException
public ProcessingException(JPAServletContext ctx, java.lang.Throwable error, Localizer.Message message, int errorCode)
-
-