Package net.sourceforge.uiq3.fx602p
Class Error
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.sourceforge.uiq3.calculator.Error
-
- net.sourceforge.uiq3.fx602p.Error
-
- All Implemented Interfaces:
Serializable
public class Error extends Error
Operation Error.- Author:
- "Martin Krischik" «krischik@users.sourceforge.net»
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static @org.jetbrains.annotations.NotNull short[]
Error_Message
Standard Error message.private static @org.jetbrains.annotations.NotNull short[]
Java_Error
Standard Error message.private static Logger
Logger
Class logger instance.private static long
serialVersionUID
private static String
TAG
Class logger tag.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description @org.jetbrains.annotations.NotNull short[]
Get_Error()
Standard Error message.(package private) static @org.jetbrains.annotations.NotNull short[]
Get_Java_Error()
Standard Error message.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
Error_Message
@NotNull private static final @org.jetbrains.annotations.NotNull short[] Error_Message
Standard Error message.
-
Java_Error
@NotNull private static final @org.jetbrains.annotations.NotNull short[] Java_Error
Standard 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
-
Error
public Error()
just an operation error.
-
Error
public Error(@NotNull @NotNull String Message)
- Parameters:
Message
- An additional Error message
-
Error
public 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)
-
Error
public Error(@NotNull @NotNull Throwable Cause)
Exception with cause of this error
- Parameters:
Cause
- Cause of this error- See Also:
Exception(Throwable)
-
-
Method Detail
-
Get_Java_Error
@NotNull static @org.jetbrains.annotations.NotNull short[] Get_Java_Error()
Standard Error message.- Returns:
- error message as calculator text
-
Get_Error
@NotNull public @org.jetbrains.annotations.NotNull short[] Get_Error()
Standard Error message.- Returns:
- error message as calculator text
-
-