| org.clapper.curn.CurnException org.clapper.curn.CurnUsageException
CurnUsageException | public class CurnUsageException extends CurnException (Code) | | Thrown to indicate a curn usage exception (usually, something
under the user's control), rather than a system problem.
version: $Revision: 6400 $ |
Constructor Summary | |
public | CurnUsageException() Default constructor, for an exception with no nested exception and
no message. | public | CurnUsageException(Throwable exception) Constructs an exception containing another exception, but no message
of its own. | public | CurnUsageException(String message) Constructs an exception containing an error message, but no
nested exception. | public | CurnUsageException(String message, Throwable exception) Constructs an exception containing another exception and a message. | public | CurnUsageException(String bundleName, String messageKey, 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). | public | CurnUsageException(String bundleName, String messageKey, String defaultMsg, 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). | public | CurnUsageException(String bundleName, String messageKey, String defaultMsg, 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. | public | CurnUsageException(String bundleName, String messageKey, String defaultMsg, Object[] msgParams, 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 to
CurnUsageException.getMessage(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. |
CurnUsageException | public CurnUsageException()(Code) | | Default constructor, for an exception with no nested exception and
no message.
|
CurnUsageException | public CurnUsageException(Throwable exception)(Code) | | Constructs an exception containing another exception, but no message
of its own.
Parameters: exception - the exception to contain |
CurnUsageException | public CurnUsageException(String message)(Code) | | Constructs an exception containing an error message, but no
nested exception.
Parameters: message - the message to associate with this exception |
CurnUsageException | public CurnUsageException(String message, Throwable exception)(Code) | | Constructs an exception containing another exception and a message.
Parameters: message - the message to associate with this exception Parameters: exception - the exception to contain |
CurnUsageException | public CurnUsageException(String bundleName, String messageKey, String defaultMsg)(Code) | | 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 the
CurnUsageException.CurnUsageException(String,String,String,Object[]) constructor,
with a null pointer for the Object[] parameter.
Parameters: bundleName - resource bundle name Parameters: messageKey - the key to the message to find in the bundle Parameters: defaultMsg - the default message See Also: CurnUsageException.CurnUsageException(String,String,String,Object[]) |
CurnUsageException | public CurnUsageException(String bundleName, String messageKey, String defaultMsg, Object[] msgParams)(Code) | | 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 the
CurnUsageException.CurnUsageException(String,String,String,Object[],Throwable) constructor, with a null pointer for the Object[] parameter.
Parameters: bundleName - resource bundle name Parameters: messageKey - the key to the message to find in the bundle Parameters: defaultMsg - the default message Parameters: msgParams - parameters to the message, if any, or null See Also: CurnUsageException.CurnUsageException(String,String,String,Object[],Throwable) |
CurnUsageException | public CurnUsageException(String bundleName, String messageKey, String defaultMsg, Throwable exception)(Code) | | 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 the
CurnUsageException.CurnUsageException(String,String,String,Object[],Throwable) constructor, with a null pointer for the Object[]
parameter.
Parameters: bundleName - resource bundle name Parameters: messageKey - the key to the message to find in the bundle Parameters: defaultMsg - the default message Parameters: exception - the exception to nest See Also: CurnUsageException.CurnUsageException(String,String,String,Object[],Throwable) |
CurnUsageException | public CurnUsageException(String bundleName, String messageKey, String defaultMsg, Object[] msgParams, Throwable exception)(Code) | | 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 to
CurnUsageException.getMessage(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 to
CurnUsageException.printStackTrace(PrintWriter,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 name Parameters: messageKey - the key to the message to find in the bundle Parameters: defaultMsg - the default message Parameters: msgParams - parameters to the message, if any, or null Parameters: exception - exception to be nested See Also: CurnUsageException.CurnUsageException(String,String,String,Object[]) |
|
|