Mercurial > jhg
comparison src/org/tmatesoft/hg/repo/HgInvalidControlFileException.java @ 467:51d682cf9cdc
Cleaned experimental tag and updated comments/javadoc
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 22 Jun 2012 17:39:31 +0200 |
parents | 9c9c442b5f2e |
children | 6526d8adbc0f |
comparison
equal
deleted
inserted
replaced
466:3ace1fc95d0a | 467:51d682cf9cdc |
---|---|
17 package org.tmatesoft.hg.repo; | 17 package org.tmatesoft.hg.repo; |
18 | 18 |
19 import java.io.File; | 19 import java.io.File; |
20 | 20 |
21 import org.tmatesoft.hg.core.Nodeid; | 21 import org.tmatesoft.hg.core.Nodeid; |
22 import org.tmatesoft.hg.internal.Experimental; | |
23 import org.tmatesoft.hg.util.Path; | 22 import org.tmatesoft.hg.util.Path; |
24 | 23 |
25 /** | 24 /** |
26 * Subclass of {@link HgInvalidFileException} to indicate failure to deal with one of <b>Mercurial</b> control files | 25 * Subclass of {@link HgInvalidFileException} to indicate failure to deal with one of <b>Mercurial</b> control files |
27 * (most likely those under .hg/, but also those residing in the repository, with special meaning to the Mercurial, like .hgtags or .hgignore) | 26 * (most likely those under .hg/, but also those residing in the repository, with special meaning to the Mercurial, like .hgtags or .hgignore) |
28 * | 27 * |
29 * XXX Perhaps, HgInvalidRevlogException? and parent HgInvalidRepositoryFileException? | |
30 * @author Artem Tikhomirov | 28 * @author Artem Tikhomirov |
31 * @author TMate Software Ltd. | 29 * @author TMate Software Ltd. |
32 */ | 30 */ |
33 @SuppressWarnings("serial") | 31 @SuppressWarnings("serial") |
34 @Experimental(reason="WORK IN PROGRESS. Name is likely to change") | |
35 public class HgInvalidControlFileException extends HgInvalidFileException { | 32 public class HgInvalidControlFileException extends HgInvalidFileException { |
33 // XXX Perhaps, child HgInvalidRevlogException and parent HgInvalidRepositoryFileException? | |
36 | 34 |
37 public HgInvalidControlFileException(String message, Throwable th, File file) { | 35 public HgInvalidControlFileException(String message, Throwable th, File file) { |
38 super(message, th, file); | 36 super(message, th, file); |
39 } | 37 } |
40 | 38 |