Package net.sf.okapi.common.exceptions
Class OkapiBadFilterInputException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.okapi.common.exceptions.OkapiException
-
- net.sf.okapi.common.exceptions.OkapiBadFilterInputException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
OkapiEncryptedDataException
,OkapiUnexpectedRevisionException
public class OkapiBadFilterInputException extends OkapiException
Signals that a filter had an error when trying to open its input. This is likely a problem in the type of input used to open the document.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OkapiBadFilterInputException()
Creates an empty new OkapiBadFilterInputException object.OkapiBadFilterInputException(String message)
Creates a new OkapiBadFilterInputException object with a given message.OkapiBadFilterInputException(String message, Throwable cause)
Creates a new OkapiBadFilterInputException object with a given message and a given parent exception cause.OkapiBadFilterInputException(Throwable cause)
Creates a new OkapiBadFilterInputException object with a given parent exception cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
OkapiBadFilterInputException
public OkapiBadFilterInputException()
Creates an empty new OkapiBadFilterInputException object.
-
OkapiBadFilterInputException
public OkapiBadFilterInputException(String message)
Creates a new OkapiBadFilterInputException object with a given message.- Parameters:
message
- text of the message.
-
OkapiBadFilterInputException
public OkapiBadFilterInputException(Throwable cause)
Creates a new OkapiBadFilterInputException object with a given parent exception cause.- Parameters:
cause
- the parent exception cause.
-
-