Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgRepositoryLockException.java @ 613:f41dd9a3b8af v1.1m4
Remove few Experimental annotations as the API they've marked graduates
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 10 May 2013 17:31:27 +0200 |
parents | 3cd3c3d37432 |
children |
comparison
equal
deleted
inserted
replaced
612:dca70c0b1f74 | 613:f41dd9a3b8af |
---|---|
14 * the terms of a license other than GNU General Public License | 14 * the terms of a license other than GNU General Public License |
15 * contact TMate Software at support@hg4j.com | 15 * contact TMate Software at support@hg4j.com |
16 */ | 16 */ |
17 package org.tmatesoft.hg.core; | 17 package org.tmatesoft.hg.core; |
18 | 18 |
19 import org.tmatesoft.hg.internal.Experimental; | |
20 import org.tmatesoft.hg.repo.HgRepositoryLock; | 19 import org.tmatesoft.hg.repo.HgRepositoryLock; |
21 | 20 |
22 /** | 21 /** |
23 * Thrown from within {@link HgRepositoryLock} to indicate troubles acquiring or releasing a lock. | 22 * Thrown from within {@link HgRepositoryLock} to indicate troubles acquiring or releasing a lock. |
24 * | 23 * |
25 * @author Artem Tikhomirov | 24 * @author Artem Tikhomirov |
26 * @author TMate Software Ltd. | 25 * @author TMate Software Ltd. |
27 */ | 26 */ |
28 @SuppressWarnings("serial") | 27 @SuppressWarnings("serial") |
29 @Experimental(reason="Work in progress") | |
30 public class HgRepositoryLockException extends HgException { | 28 public class HgRepositoryLockException extends HgException { |
31 | 29 |
32 public HgRepositoryLockException(String message) { | 30 public HgRepositoryLockException(String message) { |
33 super(message); | 31 super(message); |
34 } | 32 } |