(file) Return to CIMParameterRep.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/CIMParameterRep.cpp between version 1.23 and 1.24

version 1.23, 2002/08/14 17:41:16 version 1.24, 2002/08/20 17:39:37
Line 53 
Line 53 
         throw NullType();         throw NullType();
  
     if (_arraySize && !_isArray)     if (_arraySize && !_isArray)
         throw IncompatibleTypes();          throw IncompatibleTypesException();
  
     if (!referenceClassName.isNull())     if (!referenceClassName.isNull())
     {     {
         if (_type != CIMTYPE_REFERENCE)         if (_type != CIMTYPE_REFERENCE)
         {         {
             throw ExpectedReferenceValue();              throw ExpectedReferenceValueException();
         }         }
     }     }
     else     else
Line 67 
Line 67 
         // ATTN: revisit this later!         // ATTN: revisit this later!
 #if 0 #if 0
         if (_type == CIMTYPE_REFERENCE)         if (_type == CIMTYPE_REFERENCE)
             throw MissingReferenceClassName();              throw MissingReferenceClassNameException();
 #endif #endif
     }     }
 } }
Line 85 
Line 85 
 void CIMParameterRep::removeQualifier (Uint32 pos) void CIMParameterRep::removeQualifier (Uint32 pos)
 { {
     if (pos >= _qualifiers.getCount ())     if (pos >= _qualifiers.getCount ())
         throw OutOfBounds ();          throw IndexOutOfBoundsException();
  
     _qualifiers.removeQualifier (pos);     _qualifiers.removeQualifier (pos);
 } }
Line 235 
Line 235 
  
     if (_referenceClassName.isNull() && _type == CIMTYPE_REFERENCE)     if (_referenceClassName.isNull() && _type == CIMTYPE_REFERENCE)
     {     {
         throw MissingReferenceClassName();          throw MissingReferenceClassNameException();
     }     }
 } }
  


Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2