javax.wbem.client
Class CIMProviderException

java.lang.Object
  extended byCIMException
      extended byjavax.wbem.client.CIMProviderException

public class CIMProviderException
extends CIMException

Exception class representing provider exceptions that occur in the CIMOM's providers.

Since:
WBEM 1.0
Version:
1.6, 02/28/02
See Also:
Serialized Form

Field Summary
static java.lang.String GENERAL_EXCEPTION
          There was some error within the provider implementation.
static java.lang.String NO_ASSOCIATOR_PROVIDER
          The associator provider class is not found.
static java.lang.String NO_AUTHORIZABLE_PROVIDER
          The method provider class is not found.
static java.lang.String NO_EVENT_PROVIDER
          The provider class is not found.
static java.lang.String NO_INDICATION_PROVIDER
          The provider class is not found.
static java.lang.String NO_INSTANCE_PROVIDER
          The instance provider class is not found.
static java.lang.String NO_METHOD_PROVIDER
          The method provider class is not found.
static java.lang.String NO_PROPERTY_PROVIDER
          The event provider is not found.
static java.lang.String NOT_ASSOCIATOR_PROVIDER
          The provider class does not implement the AssociatorProvider interface even though it has been declared as a associator provider by setting the Provider qualifier in the MOF method definition.
static java.lang.String NOT_AUTHORIZABLE_PROVIDER
          The provider class does not implement the AuthorizableProvider interface even though it has been declared as a authorizable provider by setting the Provider qualifier in the MOF method definition.
static java.lang.String NOT_EVENT_PROVIDER
          The provider class present in the class path does not implement the EventProvider interface.
static java.lang.String NOT_INDICATION_PROVIDER
          The provider class present in the class path does not implement the CIMIndicationProvider interface.
static java.lang.String NOT_INSTANCE_PROVIDER
          The provider class present in the class path does not implement the InstanceProvider interface - even though it has been declared as an instance provider by setting the Provider qualifier in the MOF class definition.
static java.lang.String NOT_METHOD_PROVIDER
          The provider class does not implement the MethodProvider interface - even though it has been declared as a method provider by setting the Provider qualifier in the MOF method definition.
static java.lang.String NOT_PROPERTY_PROVIDER
          The provider class present in the class path does not implement the PropertyProvider interface - even though it has been declared as a property provider by setting the Provider qualifier in the MOF property definition.
static java.lang.String UNKNOWN_PROVIDER_ADAPTER
          The protocol specified in the providers qualifier is incorrect.
 
Constructor Summary
CIMProviderException()
          Creates a CIMProviderException with no detail message.
CIMProviderException(java.lang.String s)
          Creates a CIMProviderException with the specified detail message.
CIMProviderException(java.lang.String s, java.lang.Object param)
          Creates a CIMProviderException with the specified detail message and one exception parameter.
CIMProviderException(java.lang.String s, java.lang.Object[] param)
          Creates a CIMProviderException with the specified detial message and an array of exception parameters.
CIMProviderException(java.lang.String s, java.lang.Object param1, java.lang.Object param2)
          Creates a CIMProviderException with the specified detail message and two exception parameters.
CIMProviderException(java.lang.String s, java.lang.Object param1, java.lang.Object param2, java.lang.Object param3)
          Creates a CIMProviderException with the specified message and three exception parameters.
CIMProviderException(java.lang.String s, java.lang.Object param1, java.lang.Object param2, java.lang.Object param3, java.lang.Object param4)
          Creates a CIMProviderException with the specified message and four exception parameters.
CIMProviderException(java.lang.String s, java.lang.Object param1, java.lang.Object param2, java.lang.Object param3, java.lang.Object param4, java.lang.Object param5)
          Creates a CIMProviderException with the specified detail message and five exception parameters.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

GENERAL_EXCEPTION

public static final java.lang.String GENERAL_EXCEPTION
There was some error within the provider implementation. The remaining parameters in this exception are defined by the provider itself.

See Also:
Constant Field Values

NO_ASSOCIATOR_PROVIDER

public static final java.lang.String NO_ASSOCIATOR_PROVIDER
The associator provider class is not found. This could be because the class path of the CIMOM does not contain the provider class. parameters, the CIM class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NO_AUTHORIZABLE_PROVIDER

public static final java.lang.String NO_AUTHORIZABLE_PROVIDER
The method provider class is not found. This could be because the class path of the CIMOM does not contain the provider class. parameters, the CIM class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NO_EVENT_PROVIDER

public static final java.lang.String NO_EVENT_PROVIDER
The provider class is not found. This could be because the class path of the CIMOM does not contain the provider class. parameters, the indication class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NO_INDICATION_PROVIDER

public static final java.lang.String NO_INDICATION_PROVIDER
The provider class is not found. This could be because the class path of the CIMOM does not contain the provider class. parameters, the indication class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NO_INSTANCE_PROVIDER

public static final java.lang.String NO_INSTANCE_PROVIDER
The instance provider class is not found. This could be because the class path of the CIMOM does not contain the provider class. parameters, the CIM class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NO_METHOD_PROVIDER

public static final java.lang.String NO_METHOD_PROVIDER
The method provider class is not found. This could be because the class path of the CIMOM does not contain the provider class. parameters, the CIM class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NO_PROPERTY_PROVIDER

public static final java.lang.String NO_PROPERTY_PROVIDER
The event provider is not found. Certain indications like Process Indications require an event provider to be present. This could be because the class path of the CIMOM does not contain the provider class. parameters, the CIM class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NOT_ASSOCIATOR_PROVIDER

public static final java.lang.String NOT_ASSOCIATOR_PROVIDER
The provider class does not implement the AssociatorProvider interface even though it has been declared as a associator provider by setting the Provider qualifier in the MOF method definition. This error message uses two parameters, the method for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NOT_AUTHORIZABLE_PROVIDER

public static final java.lang.String NOT_AUTHORIZABLE_PROVIDER
The provider class does not implement the AuthorizableProvider interface even though it has been declared as a authorizable provider by setting the Provider qualifier in the MOF method definition. This error message uses two parameters, the method for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NOT_EVENT_PROVIDER

public static final java.lang.String NOT_EVENT_PROVIDER
The provider class present in the class path does not implement the EventProvider interface. parameters, the indication class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NOT_INDICATION_PROVIDER

public static final java.lang.String NOT_INDICATION_PROVIDER
The provider class present in the class path does not implement the CIMIndicationProvider interface. parameters, the indication class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NOT_INSTANCE_PROVIDER

public static final java.lang.String NOT_INSTANCE_PROVIDER
The provider class present in the class path does not implement the InstanceProvider interface - even though it has been declared as an instance provider by setting the Provider qualifier in the MOF class definition. This error message uses two parameters, the CIM class for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NOT_METHOD_PROVIDER

public static final java.lang.String NOT_METHOD_PROVIDER
The provider class does not implement the MethodProvider interface - even though it has been declared as a method provider by setting the Provider qualifier in the MOF method definition. This error message uses two parameters, the method for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

NOT_PROPERTY_PROVIDER

public static final java.lang.String NOT_PROPERTY_PROVIDER
The provider class present in the class path does not implement the PropertyProvider interface - even though it has been declared as a property provider by setting the Provider qualifier in the MOF property definition. This error message uses two parameters, the property for which the provider is being defined, the name of the Java provider class.

See Also:
Constant Field Values

UNKNOWN_PROVIDER_ADAPTER

public static final java.lang.String UNKNOWN_PROVIDER_ADAPTER
The protocol specified in the providers qualifier is incorrect. The CIMOM does not have a protocol adapter currently loaded which matches the one specified by the provider

See Also:
Constant Field Values
Constructor Detail

CIMProviderException

public CIMProviderException()
Creates a CIMProviderException with no detail message.


CIMProviderException

public CIMProviderException(java.lang.String s)
Creates a CIMProviderException with the specified detail message.

Parameters:
s - the detail message.

CIMProviderException

public CIMProviderException(java.lang.String s,
                            java.lang.Object param)
Creates a CIMProviderException with the specified detail message and one exception parameter.

Parameters:
s - the detail message.
param - exception parameter.

CIMProviderException

public CIMProviderException(java.lang.String s,
                            java.lang.Object[] param)
Creates a CIMProviderException with the specified detial message and an array of exception parameters.

Parameters:
s - the detail message.
param - array of exception parameters.

CIMProviderException

public CIMProviderException(java.lang.String s,
                            java.lang.Object param1,
                            java.lang.Object param2)
Creates a CIMProviderException with the specified detail message and two exception parameters.

Parameters:
s - the detail message.
param1 - first Exception parameter.
param2 - second Exception parameter.

CIMProviderException

public CIMProviderException(java.lang.String s,
                            java.lang.Object param1,
                            java.lang.Object param2,
                            java.lang.Object param3)
Creates a CIMProviderException with the specified message and three exception parameters.

Parameters:
s - the detail message.
param1 - first Exception parameter.
param2 - second Exception parameter.
param3 - third Exception parameter.

CIMProviderException

public CIMProviderException(java.lang.String s,
                            java.lang.Object param1,
                            java.lang.Object param2,
                            java.lang.Object param3,
                            java.lang.Object param4)
Creates a CIMProviderException with the specified message and four exception parameters.

Parameters:
s - the detail message.
param1 - first Exception parameter.
param2 - second Exception parameter.
param3 - third Exception parameter.
param4 - fourth Exception parameter.

CIMProviderException

public CIMProviderException(java.lang.String s,
                            java.lang.Object param1,
                            java.lang.Object param2,
                            java.lang.Object param3,
                            java.lang.Object param4,
                            java.lang.Object param5)
Creates a CIMProviderException with the specified detail message and five exception parameters.

Parameters:
s - the detail message.
param1 - first Exception parameter.
param2 - second Exception parameter.
param3 - third Exception parameter.
param4 - fourth Exception parameter.
param5 - fifth Exception parameter.


Java™ WBEM (JSR48) 1.0.0 API