Class PepperModuleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.corpus_tools.pepper.exceptions.PepperException
-
- org.corpus_tools.pepper.exceptions.AbstractPepperModuleException
-
- org.corpus_tools.pepper.modules.exceptions.PepperModuleException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JobNotFoundException,NotInitializedException,PepperModuleDataException,PepperModuleInternalException,PepperModuleNotReadyException,PepperModulePropertyException,PepperModuleTestException,PepperModuleXMLResourceException
public class PepperModuleException extends AbstractPepperModuleException
This exception is a concrete implementation ofAbstractPepperModuleExceptionand provides constructors to pass thePepperModulethrowing this exception.
Note: This exception is underspecified and only includes the information that an exception occured during the processing of a specific module. It does not give any information about the specific reason, for instance a data error or an internal error etc. If possible, please use a more specific subclassed Exception.- Author:
- Florian Zipser
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PepperModuleException()PepperModuleException(String s)PepperModuleException(String s, Throwable ex)PepperModuleException(PepperMapper pepperMapper, String s)PepperModuleException(PepperMapper pepperMapper, String s, Throwable ex)PepperModuleException(PepperModule pepperModule, String s)PepperModuleException(PepperModule pepperModule, String s, Throwable ex)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PepperModuleException
public PepperModuleException()
-
PepperModuleException
public PepperModuleException(String s)
-
PepperModuleException
public PepperModuleException(PepperModule pepperModule, String s)
-
PepperModuleException
public PepperModuleException(PepperModule pepperModule, String s, Throwable ex)
-
PepperModuleException
public PepperModuleException(PepperMapper pepperMapper, String s)
-
PepperModuleException
public PepperModuleException(PepperMapper pepperMapper, String s, Throwable ex)
-
-