Package org.tmatesoft.hg.core

Examples of org.tmatesoft.hg.core.HgRepositoryNotFoundException.initCause()


        throw new HgRepositoryNotFoundException(String.format("%s: repository version is not supported (Mercurial <0.9?)", repoPath)).setLocation(location.getPath());
      }
      return rv;
    } catch (HgRuntimeException ex) {
      HgRepositoryNotFoundException e = new HgRepositoryNotFoundException("Failed to initialize Hg4J library").setLocation(location.getPath());
      e.initCause(ex);
      throw e;
    }
  }
 
  public HgBundle loadBundle(File location) throws HgRepositoryNotFoundException {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.