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

Diff for /pegasus/src/Pegasus/Common/InternalException.h between version 1.18 and 1.20

version 1.18, 2006/05/10 19:40:38 version 1.20, 2006/07/14 18:41:41
Line 60 
Line 60 
         const char* file,         const char* file,
         size_t line,         size_t line,
         const String& message);         const String& message);
   
       virtual ~AssertionFailureException();
 }; };
  
  
Line 91 
Line 93 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //NullPointer() : Exception(MSG) { }      NullPointer();
  
     NullPointer() : Exception(MessageLoaderParms(KEY, MSG)) { }      virtual ~NullPointer();
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 104 
Line 106 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //UndeclaredQualifier(const String& qualifierName)      UndeclaredQualifier(const String& qualifierName) ;
         //: Exception(MSG + qualifierName) { }  
  
 // NOTE - MSG needs to have a $0 arg for all the substitution cases      virtual ~UndeclaredQualifier();
   UndeclaredQualifier(const String& qualifierName)  
         : Exception(MessageLoaderParms(KEY, MSG, qualifierName)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 120 
Line 119 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //BadQualifierScope(const String& qualifierName, const String& scopeString)      BadQualifierScope(
         //: Exception(MSG + qualifierName + String(" scope=") + scopeString) { }          const String& qualifierName,
           const String& scopeString);
   
         BadQualifierScope(const String& qualifierName, const String& scopeString)  
                                                  : Exception(MessageLoaderParms(KEY,  
                                                                                                                 MSG,  
                                                                                                                 qualifierName,  
                                                                                                                 scopeString)) { }  
  
       virtual ~BadQualifierScope();
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 140 
Line 134 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //BadQualifierOverride(const String& qualifierName)      BadQualifierOverride(const String& qualifierName);
         //: Exception(MSG + qualifierName) { }  
  
     BadQualifierOverride(const String& qualifierName)      virtual ~BadQualifierOverride();
     : Exception(MessageLoaderParms(KEY, MSG, qualifierName)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE BadQualifierType : public Exception class PEGASUS_COMMON_LINKAGE BadQualifierType : public Exception
Line 154 
Line 146 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //BadQualifierType(const String& qualifierName)      BadQualifierType(const String& qualifierName);
         //: Exception(MSG + qualifierName) { }      virtual ~BadQualifierType();
   
     BadQualifierType(const String& qualifierName)  
         : Exception(MessageLoaderParms(KEY, MSG, qualifierName)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 169 
Line 158 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //ClassAlreadyResolved(const String& className)      ClassAlreadyResolved(const String& className);
         //: Exception(MSG + className) { }  
  
     ClassAlreadyResolved(const String& className)      virtual ~ClassAlreadyResolved();
         : Exception(MessageLoaderParms(KEY, MSG, className)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 184 
Line 171 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //ClassNotResolved(const String& className)      ClassNotResolved(const String& className);
         //: Exception(MSG + className) { }      virtual ~ClassNotResolved();
   
     ClassNotResolved(const String& className)  
         : Exception(MessageLoaderParms(KEY, MSG, className)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 199 
Line 183 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //InstanceAlreadyResolved()      InstanceAlreadyResolved();
     // : Exception(MSG) { }      virtual ~InstanceAlreadyResolved();
   
     InstanceAlreadyResolved()  
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 214 
Line 195 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //InstantiatedAbstractClass(const String& className)      InstantiatedAbstractClass(const String& className);
      //: Exception(MSG + className) { }      virtual ~InstantiatedAbstractClass();
   
     InstantiatedAbstractClass(const String& className)  
         : Exception(MessageLoaderParms(KEY, MSG, className)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 229 
Line 207 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //NoSuchProperty(const String& propertyName)      NoSuchProperty(const String& propertyName);
         //: Exception(MSG + propertyName) { }      virtual ~NoSuchProperty();
   
     NoSuchProperty(const String& propertyName)  
         : Exception(MessageLoaderParms(KEY, MSG, propertyName)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 244 
Line 219 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
    // NoSuchFile(const String& fileName) : Exception(MSG + fileName) { }      NoSuchFile(const String& fileName);
       virtual ~NoSuchFile();
     NoSuchFile(const String& fileName)  
         : Exception(MessageLoaderParms(KEY, MSG, fileName)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 258 
Line 231 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //FileNotReadable(const String& fileName) : Exception(MSG + fileName) { }      FileNotReadable(const String& fileName);
       virtual ~FileNotReadable();
     FileNotReadable(const String& fileName)  
         : Exception(MessageLoaderParms(KEY, MSG, fileName)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 272 
Line 243 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //CannotRemoveDirectory(const String& path) : Exception(MSG + path) { }      CannotRemoveDirectory(const String& path);
       virtual ~CannotRemoveDirectory();
     CannotRemoveDirectory(const String& path)  
         : Exception(MessageLoaderParms(KEY, MSG, path)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 286 
Line 255 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //CannotRemoveFile(const String& path) : Exception(MSG + path) { }      CannotRemoveFile(const String& path);
     CannotRemoveFile(const String& path)      virtual ~CannotRemoveFile();
         : Exception(MessageLoaderParms(KEY, MSG, path)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 299 
Line 267 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //CannotRenameFile(const String& path) : Exception(MSG + path) { }      CannotRenameFile(const String& path);
     CannotRenameFile(const String& path)      virtual ~CannotRenameFile();
         : Exception(MessageLoaderParms(KEY, MSG, path)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 312 
Line 279 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //NoSuchDirectory(const String& directoryName)      NoSuchDirectory(const String& directoryName);
         //: Exception(MSG + directoryName) { }      virtual ~NoSuchDirectory();
     NoSuchDirectory(const String& directoryName)  
         : Exception(MessageLoaderParms(KEY, MSG, directoryName)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 326 
Line 291 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //CannotCreateDirectory(const String& path)      CannotCreateDirectory(const String& path);
         //: Exception(MSG + path) { }      virtual ~CannotCreateDirectory();
     CannotCreateDirectory(const String& path)  
         : Exception(MessageLoaderParms(KEY, MSG, path)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 340 
Line 303 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //CannotOpenFile(const String& path)      CannotOpenFile(const String& path);
         //: Exception(MSG + path) { }      virtual ~CannotOpenFile();
     CannotOpenFile(const String& path)  
         : Exception(MessageLoaderParms(KEY, MSG, path)) { }  
 }; };
  
 // ATTN: P3  KS documentation Required // ATTN: P3  KS documentation Required
Line 354 
Line 315 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
    // NotImplemented(const String& method) : Exception(MSG + method) { }      NotImplemented(const String& method);
     NotImplemented(const String& method)      virtual ~NotImplemented();
         : Exception(MessageLoaderParms(KEY, MSG, method)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE StackUnderflow : public Exception class PEGASUS_COMMON_LINKAGE StackUnderflow : public Exception
Line 366 
Line 326 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //StackUnderflow() : Exception(MSG) { }      StackUnderflow();
     StackUnderflow()      virtual ~StackUnderflow();
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE StackOverflow : public Exception class PEGASUS_COMMON_LINKAGE StackOverflow : public Exception
Line 378 
Line 337 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //StackOverflow() : Exception(MSG) { }      StackOverflow();
     StackOverflow()      virtual ~StackOverflow();
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 };  
   
 class PEGASUS_COMMON_LINKAGE QueueUnderflow : public Exception  
 {  
 public:  
   
     static const char MSG[];  
     static const char KEY[];  
   
     //QueueUnderflow() : Exception(MSG) { }  
     QueueUnderflow()  
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE BadFormat : public Exception class PEGASUS_COMMON_LINKAGE BadFormat : public Exception
Line 402 
Line 348 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //BadFormat() : Exception(MSG) { }      BadFormat();
     BadFormat()      virtual ~BadFormat();
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE BadlyFormedCGIQueryString : public Exception class PEGASUS_COMMON_LINKAGE BadlyFormedCGIQueryString : public Exception
Line 414 
Line 359 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //BadlyFormedCGIQueryString() : Exception(MSG) { }      BadlyFormedCGIQueryString();
     BadlyFormedCGIQueryString()      virtual ~BadlyFormedCGIQueryString();
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE DynamicLoadFailed : public Exception class PEGASUS_COMMON_LINKAGE DynamicLoadFailed : public Exception
Line 426 
Line 370 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //DynamicLoadFailed(const String& libraryName)      DynamicLoadFailed(const String& libraryName);
         //: Exception(MSG + libraryName) { }      virtual ~DynamicLoadFailed();
   
     DynamicLoadFailed(const String& libraryName)  
         : Exception(MessageLoaderParms(KEY, MSG, libraryName)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE DynamicLookupFailed : public Exception class PEGASUS_COMMON_LINKAGE DynamicLookupFailed : public Exception
Line 440 
Line 381 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //DynamicLookupFailed(const String& symbolName)      DynamicLookupFailed(const String& symbolName);
         //: Exception(MSG + symbolName) { }      virtual ~DynamicLookupFailed();
     DynamicLookupFailed(const String& symbolName)  
         : Exception(MessageLoaderParms(KEY, MSG, symbolName)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE CannotOpenDirectory : public Exception class PEGASUS_COMMON_LINKAGE CannotOpenDirectory : public Exception
Line 453 
Line 392 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //CannotOpenDirectory(const String& path) : Exception(MSG + path) { }      CannotOpenDirectory(const String& path);
     CannotOpenDirectory(const String& path)      virtual ~CannotOpenDirectory();
         : Exception(MessageLoaderParms(KEY, MSG, path)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE ParseError : public Exception class PEGASUS_COMMON_LINKAGE ParseError : public Exception
Line 465 
Line 403 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //ParseError(const String& message) : Exception(MSG + message) { }      ParseError(const String& message);
     ParseError(const String& message)      virtual ~ParseError();
         : Exception(MessageLoaderParms(KEY, MSG, message)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE MissingNullTerminator : public Exception class PEGASUS_COMMON_LINKAGE MissingNullTerminator : public Exception
Line 477 
Line 414 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //MissingNullTerminator() : Exception(MSG) { }      MissingNullTerminator();
     MissingNullTerminator()      virtual ~MissingNullTerminator();
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 }; };
  
 //l10n start //l10n start
Line 491 
Line 427 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //MalformedLanguageHeader(const String& error) : Exception(MSG + error) { }      MalformedLanguageHeader(const String& error);
     MalformedLanguageHeader(const String& error)      virtual ~MalformedLanguageHeader();
         : Exception(MessageLoaderParms(KEY, MSG, error)) { }  
 }; };
  
   
 class PEGASUS_COMMON_LINKAGE InvalidAcceptLanguageHeader: public Exception class PEGASUS_COMMON_LINKAGE InvalidAcceptLanguageHeader: public Exception
 { {
 public: public:
Line 504 
Line 438 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //InvalidAcceptLanguageHeader(const String& error) : Exception(MSG + error) { }      InvalidAcceptLanguageHeader(const String& error);
     InvalidAcceptLanguageHeader(const String& error)      virtual ~InvalidAcceptLanguageHeader();
         : Exception(MessageLoaderParms(KEY, MSG, error)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE InvalidContentLanguageHeader: public Exception class PEGASUS_COMMON_LINKAGE InvalidContentLanguageHeader: public Exception
Line 516 
Line 449 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //InvalidContentLanguageHeader(const String& error) : Exception(MSG + error) { }      InvalidContentLanguageHeader(const String& error);
     InvalidContentLanguageHeader(const String& error)      virtual ~InvalidContentLanguageHeader();
         : Exception(MessageLoaderParms(KEY, MSG, error)) { }  
 }; };
  
 //l10n end //l10n end
Line 530 
Line 462 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //InvalidAuthHeader() : Exception(MSG) { }      InvalidAuthHeader();
     InvalidAuthHeader()      virtual ~InvalidAuthHeader();
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE UnauthorizedAccess: public Exception class PEGASUS_COMMON_LINKAGE UnauthorizedAccess: public Exception
Line 542 
Line 473 
     static const char MSG[];     static const char MSG[];
     static const char KEY[];     static const char KEY[];
  
     //UnauthorizedAccess() : Exception(MSG) { }      UnauthorizedAccess();
     UnauthorizedAccess()      virtual ~UnauthorizedAccess();
         : Exception(MessageLoaderParms(KEY, MSG)) { }  
 }; };
  
 class PEGASUS_COMMON_LINKAGE IncompatibleTypesException : public Exception class PEGASUS_COMMON_LINKAGE IncompatibleTypesException : public Exception
 { {
 public: public:
     IncompatibleTypesException();     IncompatibleTypesException();
       virtual ~IncompatibleTypesException();
 }; };
  
 class PEGASUS_COMMON_LINKAGE InternalSystemError : public Exception class PEGASUS_COMMON_LINKAGE InternalSystemError : public Exception
Line 559 
Line 490 
  
     static const char MSG[];     static const char MSG[];
  
     InternalSystemError()      InternalSystemError();
         : Exception(MSG) { }      virtual ~InternalSystemError();
 }; };
  
  


Legend:
Removed from v.1.18  
changed lines
  Added in v.1.20

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2