Class Error

  • All Implemented Interfaces:
    Serializable
    Direct Known Subclasses:
    Error, Error

    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 Detail

      • Logger

        private static final Logger Logger

        Class logger instance.

      • 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 message
        Cause - 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)