Package org.eclipse.jgit.errors
Class NotSupportedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.eclipse.jgit.errors.NotSupportedException
- All Implemented Interfaces:
Serializable
JGit encountered a case that it knows it cannot yet handle.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstruct a NotSupportedException for some issue JGit cannot yet handle.NotSupportedException
(String s, Throwable why) Construct a NotSupportedException for some issue JGit cannot yet handle. -
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
-
NotSupportedException
Construct a NotSupportedException for some issue JGit cannot yet handle.- Parameters:
s
- message describing the issue
-
NotSupportedException
Construct a NotSupportedException for some issue JGit cannot yet handle.- Parameters:
s
- message describing the issuewhy
- a lower level implementation specific issue.
-