Package com.ibm.websphere.command
Class UnsetInputPropertiesException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- com.ibm.websphere.exception.DistributedException
- 
- com.ibm.websphere.command.CommandException
- 
- com.ibm.websphere.command.UnsetInputPropertiesException
 
 
 
 
 
- 
- All Implemented Interfaces:
- com.ibm.websphere.exception.DistributedExceptionEnabled,- java.io.Serializable
 
 public class UnsetInputPropertiesException extends CommandException UnsetInputPropertiesException is thrown by the execute() method (in a TargetableCommandImpl class) if a command's isReadyToCallExecute() method returnsfalse.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description UnsetInputPropertiesException()Constructor without parameters.UnsetInputPropertiesException(java.lang.String message)Constructor with a message.UnsetInputPropertiesException(java.lang.String resourceBundleName, java.lang.String resourceKey, java.lang.Object[] formatArguments, java.lang.String defaultText)Constructor with information for localizing messages.UnsetInputPropertiesException(java.lang.String resourceBundleName, java.lang.String resourceKey, java.lang.Object[] formatArguments, java.lang.String defaultText, java.lang.Throwable exception)Constructor with information for localizing messages and an exception to chain.
 - 
Method Summary- 
Methods inherited from class com.ibm.websphere.command.CommandExceptiongetException
 - 
Methods inherited from class com.ibm.websphere.exception.DistributedExceptiongetException, getExceptionInfo, getMessage, getOriginalException, getPreviousException, printStackTrace, printStackTrace, printStackTrace, printSuperStackTrace, printSuperStackTrace, setDefaultMessage, setLocalizationInfo
 
- 
 
- 
- 
- 
Constructor Detail- 
UnsetInputPropertiesExceptionpublic UnsetInputPropertiesException() Constructor without parameters.
 - 
UnsetInputPropertiesExceptionpublic UnsetInputPropertiesException(java.lang.String message) Constructor with a message.- Parameters:
- message- A string describing the exception.
 
 - 
UnsetInputPropertiesExceptionpublic UnsetInputPropertiesException(java.lang.String resourceBundleName, java.lang.String resourceKey, java.lang.Object[] formatArguments, java.lang.String defaultText)Constructor with information for localizing messages.- Parameters:
- resourceBundleName- The name of resource bundle that will be used to retrieve the message for getMessage() method.
- resourceKey- The key in the resource bundle that will be used to select the specific message that is retrieved for the getMessage() method.
- formatArguments- The arguments to be passed to the MessageFormat class to act as replacement variables in the message that is retrieved from the resource bundle. Valid types are those supported by MessageFormat.
- defaultText- The default message that will be used by the getMessage() method if the resource bundle or the key cannot be found.
 
 - 
UnsetInputPropertiesExceptionpublic UnsetInputPropertiesException(java.lang.String resourceBundleName, java.lang.String resourceKey, java.lang.Object[] formatArguments, java.lang.String defaultText, java.lang.Throwable exception)Constructor with information for localizing messages and an exception to chain.- Parameters:
- resourceBundleName- The name of resource bundle that will be used to retrieve the message for getMessage() method.
- resourceKey- The key in the resource bundle that will be used to select the specific message retrieved for the getMessage() method.
- formatArguments- The arguments to be passed to the MessageFormat class to act as replacement variables in the message that is retrieved from the resource bundle. Valid types are those supported by MessageFormat.
- defaultText- The default message that will be used by the getMessage() method if the resource bundle or the key cannot be found.
- exception- The exception that is to be chained.
 
 
- 
 
-