Package net.sourceforge.uiq3.calculator
Class Error
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.sourceforge.uiq3.calculator.Error
-
- All Implemented Interfaces:
Serializable
public abstract class Error extends Exception
"Error" is an abstract exception class representing all possible errors the calculator can produce.- Author:
- "Martin Krischik" «krischik@users.sourceforge.net»
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static Logger
Logger
Class logger instance.private static long
serialVersionUID
private static String
TAG
Class logger tag.
-
Constructor Summary
Constructors Modifier Constructor Description protected
Error()
Superclass for Calculator Exceptions.protected
Error(@NotNull String Message)
Exception with message of this errorprotected
Error(@NotNull String Message, @NotNull Throwable Cause)
Exception with message and cause of this errorprotected
Error(@NotNull Throwable Cause)
Exception with cause of this error
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
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
protected Error()
Superclass for Calculator Exceptions.- See Also:
Exception()
-
Error
protected Error(@NotNull @NotNull String Message)
Exception with message of this error
- Parameters:
Message
- error message- See Also:
Exception(String)
-
Error
protected Error(@NotNull @NotNull String Message, @NotNull @NotNull Throwable Cause)
Exception with message and cause of this error
- Parameters:
Message
- error messageCause
- Cause of this error- See Also:
Exception(String, Throwable)
-
Error
protected Error(@NotNull @NotNull Throwable Cause)
Exception with cause of this error
- Parameters:
Cause
- Cause of this error- See Also:
Exception(Throwable)
-
-