Class GuideException

  • All Implemented Interfaces:
    java.io.Serializable

    public class GuideException
    extends java.lang.RuntimeException
    Java Exception that is thrown when any of the adaptive form Component Fails.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      GuideException​(java.lang.Exception e)
      Constructs a new exception with the given exception.
      GuideException​(java.lang.String message)
      Constructs a new exception with a given message
      GuideException​(java.lang.String message, java.lang.Exception e)
      Constructs a new exception with a given message and exception.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • GuideException

        public GuideException​(java.lang.Exception e)
        Constructs a new exception with the given exception.
        Parameters:
        e - The causing exception.
        See Also:
        RuntimeException(java.lang.String, java.lang.Throwable, boolean, boolean)
      • GuideException

        public GuideException​(java.lang.String message)
        Constructs a new exception with a given message
        Parameters:
        message - The detail message.
        See Also:
        RuntimeException(java.lang.String)
      • GuideException

        public GuideException​(java.lang.String message,
                              java.lang.Exception e)
        Constructs a new exception with a given message and exception.
        Parameters:
        message - The detail message.
        e - The causing exception.
        See Also:
        RuntimeException(java.lang.String, java.lang.Throwable, boolean, boolean)