Class ApplicationException

  • All Implemented Interfaces:
    Serializable

    public class ApplicationException
    extends Exception

    An exception class that indicates error conditions related to the Application class.

    The application framework contains a startup class for starting a Java GUI application. Error conditions occurring during the startup phase will cause exceptions of this type being thrown.

    Version:
    $Id: ApplicationException.java 205 2012-01-29 18:29:57Z oheger $
    Author:
    Oliver Heger
    See Also:
    Serialized Form
    • Constructor Detail

      • ApplicationException

        public ApplicationException()
        Creates a new instance of ApplicationException without further information.
      • ApplicationException

        public ApplicationException​(String msg)
        Creates a new instance of ApplicationException and initializes it with an error message.
        Parameters:
        msg - the error message
      • ApplicationException

        public ApplicationException​(String msg,
                                    Throwable cause)
        Creates a new instance of ApplicationException and initializes it with an error message and a root cause.
        Parameters:
        msg - the error message
        cause - the root cause for this exception
      • ApplicationException

        public ApplicationException​(Throwable cause)
        Creates a new instance of ApplicationException and initializes it with the root cause of this exception.
        Parameters:
        cause - the root cause for this exception