tikhomirov@505: /* tikhomirov@505: * Copyright (c) 2012 TMate Software Ltd tikhomirov@505: * tikhomirov@505: * This program is free software; you can redistribute it and/or modify tikhomirov@505: * it under the terms of the GNU General Public License as published by tikhomirov@505: * the Free Software Foundation; version 2 of the License. tikhomirov@505: * tikhomirov@505: * This program is distributed in the hope that it will be useful, tikhomirov@505: * but WITHOUT ANY WARRANTY; without even the implied warranty of tikhomirov@505: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the tikhomirov@505: * GNU General Public License for more details. tikhomirov@505: * tikhomirov@505: * For information on how to redistribute this software under tikhomirov@505: * the terms of a license other than GNU General Public License tikhomirov@505: * contact TMate Software at support@hg4j.com tikhomirov@505: */ tikhomirov@505: package org.tmatesoft.hg.core; tikhomirov@505: tikhomirov@505: import org.tmatesoft.hg.repo.HgRepositoryLock; tikhomirov@505: tikhomirov@505: /** tikhomirov@505: * Thrown from within {@link HgRepositoryLock} to indicate troubles acquiring or releasing a lock. tikhomirov@505: * tikhomirov@505: * @author Artem Tikhomirov tikhomirov@505: * @author TMate Software Ltd. tikhomirov@505: */ tikhomirov@505: @SuppressWarnings("serial") tikhomirov@505: public class HgRepositoryLockException extends HgException { tikhomirov@505: tikhomirov@505: public HgRepositoryLockException(String message) { tikhomirov@505: super(message); tikhomirov@505: } tikhomirov@505: }