Class ReplicaCatalogException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ReplicaCatalogException
    extends CatalogException
    Class to notify of failures. Exceptions are chained like the SQLException interface.

    Author:
    Jens-S. Vöckler, Karan Vahi
    See Also:
    org.griphyn.common.catalog.ReplicaCatalog, Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ReplicaCatalogException()  
      ReplicaCatalogException​(java.lang.String s)
      Constructs a ReplicaCatalogException with the specified detailed message.
      ReplicaCatalogException​(java.lang.String s, java.lang.Throwable cause)
      Constructs a ReplicaCatalogException with the specified detailed message and a cause.
      ReplicaCatalogException​(java.lang.Throwable cause)
      Constructs a ReplicaCatalogException with the specified just a cause.
    • 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

      • ReplicaCatalogException

        public ReplicaCatalogException()
      • ReplicaCatalogException

        public ReplicaCatalogException​(java.lang.String s)
        Constructs a ReplicaCatalogException with the specified detailed message.
        Parameters:
        s - is the detailled message.
      • ReplicaCatalogException

        public ReplicaCatalogException​(java.lang.String s,
                                       java.lang.Throwable cause)
        Constructs a ReplicaCatalogException with the specified detailed message and a cause.
        Parameters:
        s - is the detailled message.
        cause - is the cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is nonexistent or unknown.
      • ReplicaCatalogException

        public ReplicaCatalogException​(java.lang.Throwable cause)
        Constructs a ReplicaCatalogException with the specified just a cause.
        Parameters:
        cause - is the cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is nonexistent or unknown.