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

Diff for /pegasus/src/Pegasus/Common/Exception.h between version 1.22.2.3 and 1.22.2.4

version 1.22.2.3, 2001/07/31 23:54:38 version 1.22.2.4, 2001/08/17 03:06:23
Line 599 
Line 599 
     BindFailed(const String& message) : Exception(MSG + message) { }     BindFailed(const String& message) : Exception(MSG + message) { }
 }; };
  
   class PEGASUS_COMMON_LINKAGE InvalidLocator : public Exception
   {
   public:
   
       static const char MSG[];
   
       InvalidLocator(const String& locator) : Exception(MSG + locator) { }
   };
   
   class PEGASUS_COMMON_LINKAGE CannotCreateSocket : public Exception
   {
   public:
   
       static const char MSG[];
   
       CannotCreateSocket() : Exception(MSG) { }
   };
   
   class PEGASUS_COMMON_LINKAGE CannotConnect : public Exception
   {
   public:
   
       static const char MSG[];
   
       CannotConnect(const String& locator) : Exception(MSG + locator) { }
   };
   
   class PEGASUS_COMMON_LINKAGE UnexpectedFailure : public Exception
   {
   public:
   
       static const char MSG[];
   
       UnexpectedFailure() : Exception(MSG) { }
   };
  
 PEGASUS_COMMON_LINKAGE void ThrowUnitializedHandle(); PEGASUS_COMMON_LINKAGE void ThrowUnitializedHandle();
  


Legend:
Removed from v.1.22.2.3  
changed lines
  Added in v.1.22.2.4

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2