//%2006//////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems. // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.; // IBM Corp.; EMC Corporation, The Open Group. // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.; // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group. // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.; // EMC Corporation; VERITAS Software Corporation; The Open Group. // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.; // EMC Corporation; Symantec Corporation; The Open Group. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // //============================================================================== // //%///////////////////////////////////////////////////////////////////////////// #ifndef Pegasus_Exception_h #define Pegasus_Exception_h #include #include #include #include #include #include #ifdef PEGASUS_INTERNALONLY # include #endif PEGASUS_NAMESPACE_BEGIN class ExceptionRep; class CIMInstance; class CIMConstInstance; /**

The Exception class is the parent class for all exceptions that can be generated by any component of the Pegasus infrastructure. It includes not only the CIM exceptions that are defined by the DMTF, but also various exceptions that may occur during the processing of functions called by clients and providers.

*/ class PEGASUS_COMMON_LINKAGE Exception { public: /// Exception(const String& message); /// Exception(const Exception& exception); #ifdef PEGASUS_INTERNALONLY Exception(const MessageLoaderParms& msgParms); #endif /// virtual ~Exception(); /// virtual const String& getMessage() const; #ifdef PEGASUS_INTERNALONLY // Note: Not virtual to preserve binary compatibility. const ContentLanguageList& getContentLanguages() const; // Not virtual to preserve binary compatibility. void setContentLanguages(const ContentLanguageList& langs); #endif protected: Exception(); ExceptionRep * _rep; }; /// class PEGASUS_COMMON_LINKAGE IndexOutOfBoundsException : public Exception { public: /// IndexOutOfBoundsException(); }; /// class PEGASUS_COMMON_LINKAGE AlreadyExistsException : public Exception { public: /// AlreadyExistsException(const String& message); #ifdef PEGASUS_INTERNALONLY AlreadyExistsException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE InvalidNameException : public Exception { public: /// InvalidNameException(const String& name); #ifdef PEGASUS_INTERNALONLY InvalidNameException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE InvalidNamespaceNameException : public Exception { public: /// InvalidNamespaceNameException(const String& name); #ifdef PEGASUS_INTERNALONLY InvalidNamespaceNameException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE UninitializedObjectException : public Exception { public: /// UninitializedObjectException(); }; /// class PEGASUS_COMMON_LINKAGE TypeMismatchException : public Exception { public: /// TypeMismatchException(); TypeMismatchException(const String& message); #ifdef PEGASUS_INTERNALONLY TypeMismatchException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE DynamicCastFailedException : public Exception { public: /// DynamicCastFailedException(); }; /// class PEGASUS_COMMON_LINKAGE InvalidDateTimeFormatException : public Exception { public: /// InvalidDateTimeFormatException(); }; /// class PEGASUS_COMMON_LINKAGE MalformedObjectNameException : public Exception { public: /// MalformedObjectNameException(const String& objectName); #ifdef PEGASUS_INTERNALONLY MalformedObjectNameException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE BindFailedException : public Exception { public: /// BindFailedException(const String& message); #ifdef PEGASUS_INTERNALONLY BindFailedException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE InvalidLocatorException : public Exception { public: /// InvalidLocatorException(const String& locator); #ifdef PEGASUS_INTERNALONLY InvalidLocatorException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE CannotCreateSocketException : public Exception { public: /// CannotCreateSocketException(); }; /// class PEGASUS_COMMON_LINKAGE CannotConnectException : public Exception { public: /// CannotConnectException(const String& message); #ifdef PEGASUS_INTERNALONLY CannotConnectException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE AlreadyConnectedException: public Exception { public: /// AlreadyConnectedException(); }; /// class PEGASUS_COMMON_LINKAGE NotConnectedException: public Exception { public: /// NotConnectedException(); }; /// class PEGASUS_COMMON_LINKAGE ConnectionTimeoutException: public Exception { public: /// ConnectionTimeoutException(); }; /// class PEGASUS_COMMON_LINKAGE SSLException: public Exception { public: /// SSLException(const String& message); #ifdef PEGASUS_INTERNALONLY SSLException(MessageLoaderParms& msgParms); #endif }; /// class PEGASUS_COMMON_LINKAGE DateTimeOutOfRangeException : public Exception { public: /// DateTimeOutOfRangeException(const String& message); #ifdef PEGASUS_INTERNALONLY DateTimeOutOfRangeException(MessageLoaderParms& msgParms); #endif }; /** The CIMException defines the CIM exceptions that are formally defined in the CIM Operations over HTTP specification. */ class PEGASUS_COMMON_LINKAGE CIMException : public Exception { public: /** Construct a CIMException with status code and Error description message. @param code CIMStatus code defining the error @param message String defining the message text @param instance CIMInstance containing the CIM_Error instance */ CIMException( CIMStatusCode code = CIM_ERR_SUCCESS, const String& message = String::EMPTY); /** Construct a CIMException with status code, message and a CIM_Error instance attached to the exception. Note that this allows the CIMStatusCode and Description in the CIMError to be different than those attached to the call. @param code CIMStatus code defining the error @param message String defining the message text @param instance CIMInstance containing the CIM_Error instance. */ CIMException( CIMStatusCode code, const String& message, const CIMInstance& instance); /** Construct a CIMException with status code, message and an Array of CIM_Error instances attached to the exception. Note that this allows the CIMStatusCode and Description in the CIMErrors to be different than those attached to the call. @param code CIMStatus code defining the error @param message String defining the message text @param instances Array containing CIM_Error instances. */ CIMException( CIMStatusCode code, const String& message, const Array& instances); #ifdef PEGASUS_INTERNALONLY CIMException( CIMStatusCode code, const MessageLoaderParms& msgParms); CIMException( CIMStatusCode code, const MessageLoaderParms& msgParms, const CIMInstance& instance); CIMException( CIMStatusCode code, const MessageLoaderParms& msgParms, const Array& instances); #endif /// CIMException(const CIMException & cimException); /// CIMException& operator=(const CIMException & cimException); /// virtual ~CIMException(); /** gets the CIMStatusCode for the current CIMException. This is the code that defines the ERROR that was executed and transmitted to the Client. @return a single CIMStatusCode @SeeAlso CIMStatusCode EXAMPLE try { .. Execute CIM Operation } catch (CIMExcepton e) { if (e.getCode() == CIM_ERR_ACCESS_DENIED ) .... } */ CIMStatusCode getCode() const; #ifdef PEGASUS_USE_EXPERIMENTAL_INTERFACES /* get the count of CIM_Error instances attached to the CIMException. Normally this method is used by the client to determine if any CIM_Error instances are attached to a CIMException and as the end test if the user decides to get the exception instances. @return Uint32 count of CIM_Error instances attached to a CIMException. 0 indicates that there are no instances attached. */ Uint32 getErrorCount() const; /* get a single CIM_Error instance that is attached to a CIMException. @param Uint32 index that defines the index to a particular CIMInstance attached to the CIMException. The index must be less than the value of the return from getErrorCount() Return CIMInstance the instance defined by the index. exception: returns out-of-range exception if the index is outside the range of the array of CIM_Instances attached to the CIMExcepton. EXAMPLE try { .. Execute CIM Operation } catch (CIMExcepton e) { if (e.getErrorCount() > 0 ) { for (Uint32 i = 0 ; i < getErrorCount() ; i++) ... get and process each CIM_Error instance } } */ CIMConstInstance getError(Uint32 index) const; //CIMInstance getError(Uint32 index); /* Adds a single error instance to a CIMException @param instance CIMInstance is the instance of CIM_Error that is to be added to the CIMException. This instance is NOT checked by the infrastructure for correct type. */ void addError(const CIMInstance& instance); #endif /* PEGASUS_USE_EXPERIMENTAL_INTERFACES */ }; PEGASUS_NAMESPACE_END #endif /* Pegasus_Exception_h */