Class 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
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • 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.
    • 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

      • 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 issue
        why - a lower level implementation specific issue.