Class ConfigInvalidException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConfigInvalidException
    extends java.lang.Exception
    Indicates a text string is not a valid Git style configuration.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ConfigInvalidException​(java.lang.String message)
      Construct an invalid configuration error.
      ConfigInvalidException​(java.lang.String message, java.lang.Throwable cause)
      Construct an invalid configuration error.
    • 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

      • ConfigInvalidException

        public ConfigInvalidException​(java.lang.String message)
        Construct an invalid configuration error.
        Parameters:
        message - why the configuration is invalid.
      • ConfigInvalidException

        public ConfigInvalidException​(java.lang.String message,
                                      java.lang.Throwable cause)
        Construct an invalid configuration error.
        Parameters:
        message - why the configuration is invalid.
        cause - root cause of the error.