My application uses a config file with a lot of configurable items in it.
For instance, you can specify a custom keystore with a custom alias to be used for WebService connections (instead of the default JVM javax.net.ssl.keystore
).
During runtime, we might discover that this alias does not exist in the keystore, so we might want to throw an exception. Because this is a crucial part of the application (and we can't expect the application to function properly until the config is fixed), I'm thinking throwing an Unchecked Exception is a good idea here.
Am I right in thinking that way?
Would it make sense to create a custom ConfigurationException
(which extends RuntimeException
) to throw in this case?
Unchecked exception indicate a bug in the program or a system error. For example,
ArrayIndexOutOfBoundsException
orNullPointerException
shouldn't occur in a program, and if they occur, they usually indicate a bug.When validating user input, either direct user input or user input via a configuration file, an exception does not indicate a bug. Therefore it should be a checked exception, to remind the programmer who calls your method that an exception is not unlikely to occur and must be caught. By catching the exception you can produce a user-friendly error message which points to a solution. (You don't want the end user to see the Java-generated
Exception in thread ...
message!)