Package net.sourceforge.uiq3.fx602p
Class Op_Error
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.sourceforge.uiq3.calculator.Error
-
- net.sourceforge.uiq3.fx602p.Error
-
- net.sourceforge.uiq3.fx602p.Op_Error
-
- All Implemented Interfaces:
Serializable
public final class Op_Error extends Error
Operation Error.- Author:
- "Martin Krischik" «krischik@users.sourceforge.net»
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Op_Error()
just an operation error.Op_Error(@NotNull String Message)
Op_Error(@NotNull String Message, @NotNull Throwable Cause)
Exception with message and cause of this errorOp_Error(@NotNull Throwable Cause)
Exception with cause of this error
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @org.jetbrains.annotations.NotNull short[]
Get_Error()
More serious operation Error message.-
Methods inherited from class net.sourceforge.uiq3.fx602p.Error
Get_Java_Error
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
Error
@NotNull private static final @org.jetbrains.annotations.NotNull short[] Error
More serious operation Error message.
-
Logger
private static final Logger Logger
Class logger instance.
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
TAG
private static final String TAG
Class logger tag.
-
-
Constructor Detail
-
Op_Error
public Op_Error()
just an operation error.
-
Op_Error
public Op_Error(@NotNull @NotNull String Message)
- Parameters:
Message
- An additional Error message
-
Op_Error
public Op_Error(@NotNull @NotNull String Message, @NotNull @NotNull Throwable Cause)
Exception with message and cause of this error
- Parameters:
Message
- An additional Error messageCause
- exceptions causing thing error condition.- See Also:
Exception(String, Throwable)
-
Op_Error
public Op_Error(@NotNull @NotNull Throwable Cause)
Exception with cause of this error
- Parameters:
Cause
- exceptions causing thing error condition.- See Also:
Exception(Throwable)
-
-