Class RendererRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.fop.render.afp.exceptions.NestedRuntimeException
-
- org.apache.fop.render.afp.exceptions.RendererRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
public class RendererRuntimeException extends NestedRuntimeException
A runtime exception for handling fatal errors in rendering.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RendererRuntimeException(java.lang.String msg)
Constructs a RendererRuntimeException with the specified message.RendererRuntimeException(java.lang.String msg, java.lang.Throwable t)
Constructs a RendererRuntimeException with the specified message wrapping the underlying exception.
-
Method Summary
-
Methods inherited from class org.apache.fop.render.afp.exceptions.NestedRuntimeException
getMessage, getUnderlyingException, printStackTrace, printStackTrace
-
-
-
-
Constructor Detail
-
RendererRuntimeException
public RendererRuntimeException(java.lang.String msg)
Constructs a RendererRuntimeException with the specified message.- Parameters:
msg
- the exception mesaage
-
RendererRuntimeException
public RendererRuntimeException(java.lang.String msg, java.lang.Throwable t)
Constructs a RendererRuntimeException with the specified message wrapping the underlying exception.- Parameters:
msg
- the exception mesaaget
- the underlying exception
-
-