Package net.sourceforge.uiq3.math
Class BCDError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.sourceforge.uiq3.math.BCDError
-
- All Implemented Interfaces:
Serializable
public final class BCDError extends Exception
- 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 Constructor Description BCDError()
BCDError(@NotNull String Message)
Exception with message of this errorBCDError(@NotNull String Message, @NotNull Throwable Cause)
Exception with message and cause of this BCDErrorBCDError(@NotNull Throwable Cause)
Exception with cause of this BCDError
-
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
-
BCDError
public BCDError()
-
BCDError
public BCDError(@NotNull @NotNull String Message)
Exception with message of this error
- Parameters:
Message
- error message- See Also:
Exception(String)
-
BCDError
public BCDError(@NotNull @NotNull String Message, @NotNull @NotNull Throwable Cause)
Exception with message and cause of this BCDError
- Parameters:
Message
- error messageCause
- Cause of this BCDError- See Also:
Exception(String, Throwable)
-
BCDError
public BCDError(@NotNull @NotNull Throwable Cause)
Exception with cause of this BCDError
- Parameters:
Cause
- Cause of this BCDError- See Also:
Exception(Throwable)
-
-