Class InvalidSettingException

  • All Implemented Interfaces:
    java.io.Serializable

    public class InvalidSettingException
    extends java.io.IOException
    An exception used when an error occurs reading a setting.
    Version:
    $Id: $Id
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • 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

      • InvalidSettingException

        public InvalidSettingException()
        Creates a new InvalidSettingException.
      • InvalidSettingException

        public InvalidSettingException​(java.lang.String msg)
        Creates a new InvalidSettingException.
        Parameters:
        msg - a message for the exception.
      • InvalidSettingException

        public InvalidSettingException​(java.lang.Throwable ex)
        Creates a new InvalidSettingException.
        Parameters:
        ex - the cause of the setting exception.
      • InvalidSettingException

        public InvalidSettingException​(java.lang.String msg,
                                       java.lang.Throwable ex)
        Creates a new InvalidSettingException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the setting exception.