Package net.sf.okapi.common.exceptions
Class OkapiMisAlignmentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.okapi.common.exceptions.OkapiException
-
- net.sf.okapi.common.exceptions.OkapiMisAlignmentException
-
- All Implemented Interfaces:
Serializable
public class OkapiMisAlignmentException extends OkapiException
Signals a misalignment problem in the segments of a text unit.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OkapiMisAlignmentException()
Creates an empty new OkapiMisAlignmentException object.OkapiMisAlignmentException(String message)
Creates a new OkapiMisAlignmentException object with a given message.OkapiMisAlignmentException(String message, Throwable cause)
Creates a new OkapiMisAlignmentException object with a given message and a given parent exception cause.OkapiMisAlignmentException(Throwable cause)
Creates a new OkapiMisAlignmentException 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
-
OkapiMisAlignmentException
public OkapiMisAlignmentException()
Creates an empty new OkapiMisAlignmentException object.
-
OkapiMisAlignmentException
public OkapiMisAlignmentException(String message)
Creates a new OkapiMisAlignmentException object with a given message.- Parameters:
message
- text of the message.
-
OkapiMisAlignmentException
public OkapiMisAlignmentException(Throwable cause)
Creates a new OkapiMisAlignmentException object with a given parent exception cause.- Parameters:
cause
- the parent exception cause.
-
-