Changeset 36523 in vbox for trunk/src/VBox/Runtime/r3/xml.cpp
- Timestamp:
- Apr 4, 2011 12:40:10 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70944
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/xml.cpp
r36521 r36523 109 109 110 110 LogicError::LogicError(RT_SRC_POS_DECL) 111 : Error(NULL)111 : RTCError(NULL) 112 112 { 113 113 char *msg = NULL; … … 1573 1573 } 1574 1574 1575 void setError(const iprt::Error &x)1575 void setError(const RTCError &x) 1576 1576 { 1577 1577 error = x.what(); … … 1645 1645 } 1646 1646 catch (const xml::EIPRTFailure &err) { pContext->setError(err); } 1647 catch (const iprt::Error &err) { pContext->setError(err); }1647 catch (const RTCError &err) { pContext->setError(err); } 1648 1648 catch (const std::exception &err) { pContext->setError(err); } 1649 1649 catch (...) { pContext->setError(xml::LogicError(RT_SRC_POS)); } … … 1770 1770 } 1771 1771 catch (const xml::EIPRTFailure &err) { pContext->setError(err); } 1772 catch (const iprt::Error &err) { pContext->setError(err); }1772 catch (const RTCError &err) { pContext->setError(err); } 1773 1773 catch (const std::exception &err) { pContext->setError(err); } 1774 1774 catch (...) { pContext->setError(xml::LogicError(RT_SRC_POS)); }
Note:
See TracChangeset
for help on using the changeset viewer.