Package org.docx4j.org.apache.fop.events
Class EventExceptionManager
java.lang.Object
org.docx4j.org.apache.fop.events.EventExceptionManager
public final class EventExceptionManager
extends java.lang.Object
This class is responsible for converting events into exceptions.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceEventExceptionManager.ExceptionFactoryThis interface is implementation by exception factories that can create exceptions from events. -
Method Summary
Modifier and Type Method Description static voidthrowException(Event event, java.lang.String exceptionClass)Converts an event into an exception and throws that.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
throwException
public static void throwException(Event event, java.lang.String exceptionClass) throws java.lang.ThrowableConverts an event into an exception and throws that. If the exception class is null, aRuntimeExceptionwill be thrown.- Parameters:
event- the event to be convertedexceptionClass- the exception class to be thrown- Throws:
java.lang.Throwable- this happens always
-