Package com.iizix

Class ConnectorException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConnectorException
    extends java.io.IOException
    The base exception class for connectors.
    Author:
    Christopher Mindus
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      ConstructorDescription
      ConnectorException​(java.lang.String message)
      Constructs a connector exception with just a message text.
      ConnectorException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a connector exception with a nested 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

      • ConnectorException

        public ConnectorException​(java.lang.String message,
                                  java.lang.Throwable cause)
        Constructs a connector exception with a nested exception.
        Parameters:
        message - The text message of the exception.
        cause - The nested exception that is the cause of this exception.
      • ConnectorException

        public ConnectorException​(java.lang.String message)
        Constructs a connector exception with just a message text.
        Parameters:
        message - The text message of the exception.