Package net.sf.okapi.common.exceptions
Class OkapiEditorCreationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.okapi.common.exceptions.OkapiException
-
- net.sf.okapi.common.exceptions.OkapiEditorCreationException
-
- All Implemented Interfaces:
Serializable
public class OkapiEditorCreationException extends OkapiException
Signals that an editor could not be created. This error occurs for example when trying to edit the parameters of a filter or of a step and the corresponding editor cannot be created.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OkapiEditorCreationException()
Creates an empty new OkapiEditorCreationException object.OkapiEditorCreationException(String message)
Creates a new OkapiEditorCreationException object with a given message.OkapiEditorCreationException(String message, Throwable cause)
Creates a new OkapiEditorCreationException object with a given message and a given parent exception cause.OkapiEditorCreationException(Throwable cause)
Creates a new OkapiEditorCreationException 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
-
OkapiEditorCreationException
public OkapiEditorCreationException()
Creates an empty new OkapiEditorCreationException object.
-
OkapiEditorCreationException
public OkapiEditorCreationException(String message)
Creates a new OkapiEditorCreationException object with a given message.- Parameters:
message
- text of the message.
-
OkapiEditorCreationException
public OkapiEditorCreationException(Throwable cause)
Creates a new OkapiEditorCreationException object with a given parent exception cause.- Parameters:
cause
- the parent exception cause.
-
-