Skip to content

Commit c5c0bd0

Browse files
committed
fix javadoc
1 parent ba84883 commit c5c0bd0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/CacheException.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,19 @@ public class CacheException extends Exception {
3333
private final Level level;
3434

3535
/**
36-
* Construct a {@code HistoryException} with the specified message.
36+
* Construct a {@code CacheException} with the specified message.
3737
*
3838
* @param msg the message string
3939
*/
4040
public CacheException(String msg) {
4141
this(msg, Level.WARNING);
4242
}
4343

44+
/**
45+
* Construct a {@code CacheException} with the specified message and log level.
46+
* @param msg message
47+
* @param level suggested log level
48+
*/
4449
public CacheException(String msg, Level level) {
4550
super(msg);
4651
this.level = level;

0 commit comments

Comments
 (0)