Class FormRuntimeException

  • All Implemented Interfaces:
    Serializable

    public class FormRuntimeException
    extends RuntimeException

    An exception class for reporting runtime exceptions related to the form framework.

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

      • FormRuntimeException

        public FormRuntimeException()
        Creates a new instance of FormRuntimeException.
      • FormRuntimeException

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

        public FormRuntimeException​(Throwable cause)
        Creates a new instance of FormRuntimeException and initializes it with the root cause.
        Parameters:
        cause - the root cause
      • FormRuntimeException

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