com.ibm.websphere.wim.exception
Class WIMApplicationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.ibm.websphere.wim.exception.WIMException
              extended by com.ibm.websphere.wim.exception.WIMApplicationException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
AccessException, AttributeNotSupportedException, CertificateMapFailedException, CertificateMapNotSupportedException, CertificateMapperException, ChangeControlException, DatabaseTypeNotSupportedException, DefaultParentNotFoundException, DuplicateLogonIdException, DynamicPropertyNotSupportedException, DynamicUpdateConfigException, EntityAlreadyExistsException, EntityHasDescendantsException, EntityIdentifierNotSpecifiedException, EntityNotFoundException, EntityNotInRealmScopeException, EntityTypeAlreadyExistException, EntityTypeNotDefinedException, EntityTypeNotSupportedException, FederationEntityNotExistsException, InitializationException, InvalidArgumentException, InvalidDomainNameException, InvalidEntityTypeException, InvalidIdentifierException, InvalidInitPropertyException, InvalidPropertyDefinitionException, InvalidPropertyException, InvalidPropertyValueException, InvalidRepositoryIdException, InvalidSchemaException, InvalidTicketException, InvalidUniqueIdException, InvalidUniqueNameException, MaxResultsExceededException, MigrationException, MissingMandatoryPropertyException, MissingSearchControlException, MultipleEntriesFoundException, OperationNotSupportedException, PageControlException, PasswordCheckFailedException, PluginConfigException, PropertyAlreadyExistsException, PropertyNotDefinedException, RemoveEntityException, SchemaAlreadyExistException, SearchControlException, SortControlException, UpdateOperationalPropertyException, UpdatePropertyException, ValidationFailException, WIMConfigurationException

public class WIMApplicationException
extends WIMException

A generic vmm application exception to indicate to the caller that there was a problem with the current request due to incorrect inputs from the caller.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class com.ibm.websphere.wim.exception.WIMException
SUCCESS
 
Constructor Summary
WIMApplicationException()
          Creates the vmm application exception.
WIMApplicationException(java.util.logging.Level severity, java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String message)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String message, java.util.logging.Level severity, java.lang.String className, java.lang.String methodName)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String message, java.util.logging.Level severity, java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String messageKey, java.lang.Object[] params)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String messageKey, java.lang.Object[] params, java.util.logging.Level severity, java.lang.String className, java.lang.String methodName)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String messageKey, java.lang.Object[] params, java.util.logging.Level severity, java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String messageKey, java.lang.Object[] params, java.lang.String className, java.lang.String methodName)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String messageKey, java.lang.Object[] params, java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String messageKey, java.lang.Object[] params, java.lang.Throwable cause)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String message, java.lang.String className, java.lang.String methodName)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String message, java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.String message, java.lang.Throwable cause)
          Creates the WIMApplicationException.
WIMApplicationException(java.lang.Throwable cause)
          Creates the WIMApplicationException.
 
Method Summary
 
Methods inherited from class com.ibm.websphere.wim.exception.WIMException
getLocalizedMessage, getLocalizedMessage, getMessage, getMessage, getMessageBundle, getMessageKey, getMessageParams, getRootError, getRootErrorCode, getRootErrorMessage, getRootErrorSource, isRootErrorSet, setRootError, setRootError, setRootErrorCode, setRootErrorCode, setRootErrorMessage, setRootErrorMessage, setRootErrorSource, setRootErrorSource
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WIMApplicationException

public WIMApplicationException()
Creates the vmm application exception.


WIMApplicationException

public WIMApplicationException(java.lang.String message)
Creates the WIMApplicationException.

Parameters:
message - The message or message key of the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String message,
                               java.lang.String className,
                               java.lang.String methodName)
Creates the WIMApplicationException.

Parameters:
message - The message or message key of the exception.
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String message,
                               java.util.logging.Level severity,
                               java.lang.String className,
                               java.lang.String methodName)
Creates the WIMApplicationException.

Parameters:
message - The message or message key of the exception.
severity - The exception severity(java.util.logging.Level)
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String messageKey,
                               java.lang.Object[] params)
Creates the WIMApplicationException.

Parameters:
messageKey - The message key of the exception.
params - The parameters used for the message key of the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String messageKey,
                               java.lang.Object[] params,
                               java.lang.String className,
                               java.lang.String methodName)
Creates the WIMApplicationException.

Parameters:
messageKey - The message key of the exception.
params - The parameters used for the message key of the exception.
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String messageKey,
                               java.lang.Object[] params,
                               java.util.logging.Level severity,
                               java.lang.String className,
                               java.lang.String methodName)
Creates the WIMApplicationException.

Parameters:
messageKey - The message key of the exception.
params - The parameters used for the message key of the exception.
severity - The exception severity(java.util.logging.Level)
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
cause - The cause of the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String className,
                               java.lang.String methodName,
                               java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
cause - The cause of the exception.
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.util.logging.Level severity,
                               java.lang.String className,
                               java.lang.String methodName,
                               java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
cause - The cause of the exception.
severity - The exception severity(java.util.logging.Level)
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String message,
                               java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
cause - The cause of the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String message,
                               java.lang.String className,
                               java.lang.String methodName,
                               java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
cause - The cause of the exception.
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String message,
                               java.util.logging.Level severity,
                               java.lang.String className,
                               java.lang.String methodName,
                               java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
cause - The cause of the exception.
severity - The exceptionm severity(java.util.logging.Level)
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String messageKey,
                               java.lang.Object[] params,
                               java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
messageKey - The message key of the exception.
params - The parameters used for the message key of the exception.
cause - The cause of the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String messageKey,
                               java.lang.Object[] params,
                               java.lang.String className,
                               java.lang.String methodName,
                               java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
messageKey - The message key of the exception.
params - The parameters used for the message key of the exception.
cause - The cause of the exception.
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.

WIMApplicationException

public WIMApplicationException(java.lang.String messageKey,
                               java.lang.Object[] params,
                               java.util.logging.Level severity,
                               java.lang.String className,
                               java.lang.String methodName,
                               java.lang.Throwable cause)
Creates the WIMApplicationException.

Parameters:
messageKey - The message key of the exception.
params - The parameters used for the message key of the exception.
cause - The cause of the exception.
severity - The exceptionm severity(java.util.logging.Level)
className - The name of the class throwing the exception.
methodName - The name of the method throwing the exception.