Class ViewDispatcherException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ViewDispatcherException
    extends AspectranCheckedException
    Base class for exceptions thrown during view dispatching.

    Created: 2008. 01. 07 AM 3:35:55

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ViewDispatcherException()
      Simple constructor.
      ViewDispatcherException​(java.lang.String msg)
      Constructor to create exception with a message.
      ViewDispatcherException​(java.lang.String msg, java.lang.Throwable cause)
      Constructor to create exception to wrap another exception and pass a message.
      ViewDispatcherException​(java.lang.Throwable cause)
      Constructor to create exception to wrap another 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

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

      • ViewDispatcherException

        public ViewDispatcherException()
        Simple constructor.
      • ViewDispatcherException

        public ViewDispatcherException​(java.lang.String msg)
        Constructor to create exception with a message.
        Parameters:
        msg - the detail message
      • ViewDispatcherException

        public ViewDispatcherException​(java.lang.Throwable cause)
        Constructor to create exception to wrap another exception.
        Parameters:
        cause - the real cause of the exception
      • ViewDispatcherException

        public ViewDispatcherException​(java.lang.String msg,
                                       java.lang.Throwable cause)
        Constructor to create exception to wrap another exception and pass a message.
        Parameters:
        msg - the detail message
        cause - the real cause of the exception