blob: 8b7cb29e754481ae880b8cebc9d12de0235887bd [file] [log] [blame] [view] [edit]
Calling System.exit terminates the java process and returns a status code. Since
it is disruptive to shut down the process within library code, System.exit
should not be called outside of a main method.
Instead of calling System.exit consider throwing an unchecked exception to
signal failure.