Package net.sf.okapi.lib.xliff2.writer
Class XLIFFWriterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.okapi.lib.xliff2.writer.XLIFFWriterException
-
- All Implemented Interfaces:
Serializable
public class XLIFFWriterException extends RuntimeException
Signals that an XLIFF writer had an error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XLIFFWriterException()Creates an empty new XLIFFWriterException object.XLIFFWriterException(String message)Creates a new XLIFFWriterException object with a given message.XLIFFWriterException(String message, Throwable cause)Creates a new XLIFFWriterException object with a given message and a given parent exception cause.XLIFFWriterException(Throwable cause)Creates a new XLIFFWriterException 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
-
XLIFFWriterException
public XLIFFWriterException()
Creates an empty new XLIFFWriterException object.
-
XLIFFWriterException
public XLIFFWriterException(String message)
Creates a new XLIFFWriterException object with a given message.- Parameters:
message- text of the message.
-
XLIFFWriterException
public XLIFFWriterException(Throwable cause)
Creates a new XLIFFWriterException object with a given parent exception cause.- Parameters:
cause- the parent exception cause.
-
-