Skip to content

Commit 620b187

Browse files
committed
Unable to directly handle unknown commands in console, fixes #653
1 parent 289d339 commit 620b187

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

console/src/main/java/org/jline/console/impl/SystemRegistryImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ public Set<String> getScripts() {
11021102
}
11031103

11041104
@SuppressWarnings("serial")
1105-
private static class UnknownCommandException extends Exception {
1105+
public static class UnknownCommandException extends Exception {
11061106
public UnknownCommandException(String message) {
11071107
super(message);
11081108
}

0 commit comments

Comments
 (0)