Package org.tmatesoft.hg.core

Examples of org.tmatesoft.hg.core.HgRepositoryLockException


        }
      }
     
    } while (stopTime == -1/*no timeout*/ || System.currentTimeMillis() <= stopTime);
    String msg = String.format("Failed to aquire lock, waited for %d seconds, present owner: '%s'", timeoutSeconds, readLockInfo());
    throw new HgRepositoryLockException(msg);
  }
View Full Code Here


   * Release lock we own
   * @throws HgRepositoryLockException if there's no evidence we do own a lock
   */
  public void release() throws HgRepositoryLockException {
    if (use == 0) {
      throw new HgRepositoryLockException("Lock is not held!");
    }
    use--;
    if (use > 0) {
      return;
    }
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.core.HgRepositoryLockException

Copyright © 2018 www.massapicom. 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.