Package net.sf.okapi.common.exceptions
Class OkapiMergeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.okapi.common.exceptions.OkapiException
-
- net.sf.okapi.common.exceptions.OkapiMergeException
-
- All Implemented Interfaces:
Serializable
public class OkapiMergeException extends OkapiException
Signals that there was some error with merging. Could be mismatch of text units or a more serious error such as I/O, null pointer exception etc..- Author:
- jimh
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OkapiMergeException()
Creates an empty new OkapiBadStepInputException object.OkapiMergeException(String message)
Creates a new OkapiBadStepInputException object with a given message.OkapiMergeException(String message, Throwable cause)
Creates a new OkapiBadStepInputException object with a given message and a given parent exception cause.OkapiMergeException(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
-
OkapiMergeException
public OkapiMergeException()
Creates an empty new OkapiBadStepInputException object.
-
OkapiMergeException
public OkapiMergeException(String message)
Creates a new OkapiBadStepInputException object with a given message.- Parameters:
message
- text of the message.
-
OkapiMergeException
public OkapiMergeException(Throwable cause)
Creates a new OkapiBadStepInputException object with a given parent exception cause.- Parameters:
cause
- the parent exception cause.
-
-