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:
java.io.Serializable
public class NotSupportedException extends java.io.IOException
JGit encountered a case that it knows it cannot yet handle.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotSupportedException(java.lang.String s)
Construct a NotSupportedException for some issue JGit cannot yet handle.NotSupportedException(java.lang.String s, java.lang.Throwable why)
Construct a NotSupportedException for some issue JGit cannot yet handle.
-
-
-
Constructor Detail
-
NotSupportedException
public NotSupportedException(java.lang.String s)
Construct a NotSupportedException for some issue JGit cannot yet handle.- Parameters:
s
- message describing the issue
-
NotSupportedException
public NotSupportedException(java.lang.String s, java.lang.Throwable why)
Construct a NotSupportedException for some issue JGit cannot yet handle.- Parameters:
s
- message describing the issuewhy
- a lower level implementation specific issue.
-
-