Changeset 49029 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Oct 10, 2013 1:17:09 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89795
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ovfreader.h
r48955 r49029 38 38 * that one catch() for all xml::LogicError can handle all possible errors. 39 39 */ 40 41 40 class OVFLogicError : public xml::LogicError 42 41 { … … 44 43 OVFLogicError(const char *aFormat, ...); 45 44 }; 45 46 46 47 47 //////////////////////////////////////////////////////////////////////////////// … … 371 371 } 372 372 373 void checkConsistencyAndCompliance() throw(OVFLogicError)373 void checkConsistencyAndCompliance() RT_THROW(OVFLogicError) 374 374 { 375 375 _checkConsistencyAndCompliance(); … … 377 377 378 378 protected: 379 virtual void _checkConsistencyAndCompliance() throw(OVFLogicError);379 virtual void _checkConsistencyAndCompliance() RT_THROW(OVFLogicError); 380 380 virtual const RTCString& getItemName() 381 381 { … … 428 428 429 429 protected: 430 virtual void _checkConsistencyAndCompliance() throw(OVFLogicError);430 virtual void _checkConsistencyAndCompliance() RT_THROW(OVFLogicError); 431 431 private: 432 432 RTCString itemName; … … 474 474 475 475 protected: 476 virtual void _checkConsistencyAndCompliance() throw(OVFLogicError);476 virtual void _checkConsistencyAndCompliance() RT_THROW(OVFLogicError); 477 477 private: 478 478 RTCString itemName; … … 632 632 </code> 633 633 */ 634 635 634 class OVFReader 636 635 {
Note:
See TracChangeset
for help on using the changeset viewer.