Package org.eclipse.jgit.errors
Class ConfigInvalidException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.jgit.errors.ConfigInvalidException
- All Implemented Interfaces:
Serializable
Indicates a text string is not a valid Git style configuration.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConfigInvalidException
(String message) Construct an invalid configuration error.ConfigInvalidException
(String message, 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
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
ConfigInvalidException
Construct an invalid configuration error.- Parameters:
message
- why the configuration is invalid.
-
ConfigInvalidException
Construct an invalid configuration error.- Parameters:
message
- why the configuration is invalid.cause
- root cause of the error.
-