Package net.sf.okapi.common.exceptions
Class OkapiBadStepInputException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.okapi.common.exceptions.OkapiException
-
- net.sf.okapi.common.exceptions.OkapiBadStepInputException
-
- All Implemented Interfaces:
Serializable
public class OkapiBadStepInputException extends OkapiException
Signals that a step had an error when trying to open its input. This can be for example a problem with the type of input used to open the document, an incorrect URI, or an unsupported type of output.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OkapiBadStepInputException()
Creates an empty new OkapiBadStepInputException object.OkapiBadStepInputException(String message)
Creates a new OkapiBadStepInputException object with a given message.OkapiBadStepInputException(String message, Throwable cause)
Creates a new OkapiBadStepInputException object with a given message and a given parent exception cause.OkapiBadStepInputException(Throwable cause)
Creates a new OkapiBadStepInputException 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
-
OkapiBadStepInputException
public OkapiBadStepInputException()
Creates an empty new OkapiBadStepInputException object.
-
OkapiBadStepInputException
public OkapiBadStepInputException(String message)
Creates a new OkapiBadStepInputException object with a given message.- Parameters:
message
- text of the message.
-
OkapiBadStepInputException
public OkapiBadStepInputException(Throwable cause)
Creates a new OkapiBadStepInputException object with a given parent exception cause.- Parameters:
cause
- the parent exception cause.
-
-