Class SiteToolException

  • All Implemented Interfaces:
    java.io.Serializable

    public class SiteToolException
    extends java.lang.Exception
    An exception occurring during the execution of this tool.
    Version:
    $Id: SiteToolException.java 661727 2008-05-30 14:21:49Z bentmann $
    Author:
    Vincent Siveton
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SiteToolException​(java.lang.String message)
      Construct a new SiteToolException exception providing a message.
      SiteToolException​(java.lang.String message, java.lang.Exception cause)
      Construct a new SiteToolException exception wrapping an underlying Exception and providing a message.
      SiteToolException​(java.lang.String message, java.lang.Throwable cause)
      Construct a new SiteToolException exception wrapping an underlying Throwable and providing a message.
    • 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

      • SiteToolException

        public SiteToolException​(java.lang.String message,
                                 java.lang.Exception cause)
        Construct a new SiteToolException exception wrapping an underlying Exception and providing a message.
        Parameters:
        message - could be null
        cause - could be null
      • SiteToolException

        public SiteToolException​(java.lang.String message,
                                 java.lang.Throwable cause)
        Construct a new SiteToolException exception wrapping an underlying Throwable and providing a message.
        Parameters:
        message - could be null
        cause - could be null
      • SiteToolException

        public SiteToolException​(java.lang.String message)
        Construct a new SiteToolException exception providing a message.
        Parameters:
        message - could be null