XmlException.h 298 B

1234567891011121314151617181920
  1. #pragma once
  2. #ifndef LIBALMOND_XMLEXCEPTION_H
  3. #define LIBALMOND_XMLEXCEPTION_H
  4. #include <stdexcept>
  5. #include <string>
  6. namespace alm
  7. {
  8. struct XmlException;
  9. }
  10. struct alm::XmlException :
  11. std::runtime_error
  12. {
  13. XmlException(const std::string& err);
  14. };
  15. #endif // LIBALMOND_XMLEXCEPTION_H