Class RepositoryNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class RepositoryNotFoundException
    extends TransportException
    Indicates a local repository does not exist.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      RepositoryNotFoundException​(java.io.File location)
      Constructs an exception indicating a local repository does not exist.
      RepositoryNotFoundException​(java.io.File location, java.lang.Throwable why)
      Constructs an exception indicating a local repository does not exist.
      RepositoryNotFoundException​(java.lang.String location)
      Constructs an exception indicating a local repository does not exist.
      RepositoryNotFoundException​(java.lang.String location, java.lang.Throwable why)
      Constructs an exception indicating a local repository does not exist.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      private static java.lang.String message​(java.lang.String location)  
      • 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

      • RepositoryNotFoundException

        public RepositoryNotFoundException​(java.io.File location)
        Constructs an exception indicating a local repository does not exist.
        Parameters:
        location - description of the repository not found, usually file path.
      • RepositoryNotFoundException

        public RepositoryNotFoundException​(java.io.File location,
                                           java.lang.Throwable why)
        Constructs an exception indicating a local repository does not exist.
        Parameters:
        location - description of the repository not found, usually file path.
        why - why the repository does not exist.
      • RepositoryNotFoundException

        public RepositoryNotFoundException​(java.lang.String location)
        Constructs an exception indicating a local repository does not exist.
        Parameters:
        location - description of the repository not found, usually file path.
      • RepositoryNotFoundException

        public RepositoryNotFoundException​(java.lang.String location,
                                           java.lang.Throwable why)
        Constructs an exception indicating a local repository does not exist.
        Parameters:
        location - description of the repository not found, usually file path.
        why - why the repository does not exist.
    • Method Detail

      • message

        private static java.lang.String message​(java.lang.String location)