org.clapper.util.cmdline
Class CommandLineUserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.clapper.util.misc.NestedException
-
- org.clapper.util.cmdline.CommandLineException
-
- org.clapper.util.cmdline.CommandLineUserException
-
- All Implemented Interfaces:
- java.io.Serializable
public class CommandLineUserException extends CommandLineException
Thrown to indicate a user error other than a usage exception. A
CommandLineUsageException, if thrown, will cause theCommandLineUtilityclass to print the command line usage summary. Sometimes, you want to handle other user errors slightly differently. For example, it's fairly common for aCommandLineUtilitysubclass's main() method to handle exceptions like this:- Don't print anything for a
CommandLineUsageException, since the superclass handles that. Don't print a stack trace, either; a stack trace doesn't go well with a usage summary. - Don't print a stack trace for a CommandLineUserException; stack traces are for programmers, and this is some kind of user error other than a command-line error.
- For other errors, print (or log) a stack trace.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description CommandLineUserException()Default constructor, for an exception with no nested exception and no message.CommandLineUserException(java.lang.String message)Constructs an exception containing an error message, but no nested exception.CommandLineUserException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg)Constructs an exception containing a resource bundle name, a message key, and a default message (in case the resource bundle can't be found).CommandLineUserException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Object[] msgParams)Constructs an exception containing a resource bundle name, a message key, and a default message (in case the resource bundle can't be found).CommandLineUserException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Object[] msgParams, java.lang.Throwable exception)Constructs an exception containing a resource bundle name, a message key, a default message format (in case the resource bundle can't be found), arguments to be incorporated in the message via java.text.MessageFormat, and another exception.CommandLineUserException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Throwable exception)Constructs an exception containing a resource bundle name, a message key, a default message (in case the resource bundle can't be found), and another exception.CommandLineUserException(java.lang.String message, java.lang.Throwable exception)Constructs an exception containing another exception and a message.CommandLineUserException(java.lang.Throwable exception)Constructs an exception containing another exception, but no message of its own.
-
Method Summary
-
Methods inherited from class org.clapper.util.misc.NestedException
getMessage, getMessage, getMessages, getMessages, getMessages, getNestedException, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
CommandLineUserException
public CommandLineUserException()
Default constructor, for an exception with no nested exception and no message.
-
CommandLineUserException
public CommandLineUserException(java.lang.Throwable exception)
Constructs an exception containing another exception, but no message of its own.- Parameters:
exception- the exception to contain
-
CommandLineUserException
public CommandLineUserException(java.lang.String message)
Constructs an exception containing an error message, but no nested exception.- Parameters:
message- the message to associate with this exception
-
CommandLineUserException
public CommandLineUserException(java.lang.String message, java.lang.Throwable exception)Constructs an exception containing another exception and a message.- Parameters:
message- the message to associate with this exceptionexception- the exception to contain
-
CommandLineUserException
public CommandLineUserException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg)Constructs an exception containing a resource bundle name, a message key, and a default message (in case the resource bundle can't be found). Using this constructor is equivalent to calling theCommandLineUserException(String,String,String,Object[])constructor, with a null pointer for the Object[] parameter. Calls toNestedException.getMessage(java.util.Locale)will attempt to retrieve the top-most message (i.e., the message from this exception, not from nested exceptions) by querying the named resource bundle. Calls toNestedException.printStackTrace(PrintWriter,java.util.Locale)will do the same, where applicable. The message is not retrieved until one of those methods is called, because the desired locale is passed into getMessage() and printStackTrace(), not this constructor.- Parameters:
bundleName- resource bundle namemessageKey- the key to the message to find in the bundledefaultMsg- the default message- See Also:
CommandLineUserException(String,String,String,Object[]),NestedException.getMessage(java.util.Locale)
-
CommandLineUserException
public CommandLineUserException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Object[] msgParams)Constructs an exception containing a resource bundle name, a message key, and a default message (in case the resource bundle can't be found). Using this constructor is equivalent to calling theCommandLineUserException(String,String,String,Object[],Throwable)constructor, with a null pointer for the Throwable parameter. Calls toNestedException.getMessage(java.util.Locale)will attempt to retrieve the top-most message (i.e., the message from this exception, not from nested exceptions) by querying the named resource bundle. Calls toNestedException.printStackTrace(PrintWriter,java.util.Locale)will do the same, where applicable. The message is not retrieved until one of those methods is called, because the desired locale is passed into getMessage() and printStackTrace(), not this constructor.- Parameters:
bundleName- resource bundle namemessageKey- the key to the message to find in the bundledefaultMsg- the default messagemsgParams- parameters to the message, if any, or null- See Also:
CommandLineUserException(String,String,String,Object[]),NestedException.getMessage(java.util.Locale)
-
CommandLineUserException
public CommandLineUserException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Throwable exception)Constructs an exception containing a resource bundle name, a message key, a default message (in case the resource bundle can't be found), and another exception. Using this constructor is equivalent to calling theCommandLineUserException(String,String,String,Object[],Throwable)constructor, with a null pointer for the Object[] parameter. Calls toNestedException.getMessage(java.util.Locale)will attempt to retrieve the top-most message (i.e., the message from this exception, not from nested exceptions) by querying the named resource bundle. Calls toNestedException.printStackTrace(PrintWriter,java.util.Locale)will do the same, where applicable. The message is not retrieved until one of those methods is called, because the desired locale is passed into getMessage() and printStackTrace(), not this constructor.- Parameters:
bundleName- resource bundle namemessageKey- the key to the message to find in the bundledefaultMsg- the default messageexception- the exception to nest- See Also:
CommandLineUserException(String,String,String,Object[]),NestedException.getMessage(java.util.Locale)
-
CommandLineUserException
public CommandLineUserException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Object[] msgParams, java.lang.Throwable exception)Constructs an exception containing a resource bundle name, a message key, a default message format (in case the resource bundle can't be found), arguments to be incorporated in the message via java.text.MessageFormat, and another exception. Calls toNestedException.getMessage(java.util.Locale)will attempt to retrieve the top-most message (i.e., the message from this exception, not from nested exceptions) by querying the named resource bundle. Calls toNestedException.printStackTrace(PrintWriter,java.util.Locale)will do the same, where applicable. The message is not retrieved until one of those methods is called, because the desired locale is passed into getMessage() and printStackTrace(), not this constructor.- Parameters:
bundleName- resource bundle namemessageKey- the key to the message to find in the bundledefaultMsg- the default messagemsgParams- parameters to the message, if any, or nullexception- exception to be nested- See Also:
CommandLineUserException(String,String,String,Object[]),NestedException.getMessage(java.util.Locale)
-
-
DMelt 3.0 © DataMelt by jWork.ORG