friendlier exception handling

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150943 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2004-01-25 19:42:21 +00:00
parent 895c99e801
commit 4ec1cdc036
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ public class Lucli {
System.out.println("");//new line
exit();
} catch (IOException ioe) {
throw (ioe);
ioe.printStackTrace(System.err);
}
}