exception 422 B

123456789101112131415161718192021
  1. // file : xml/exception -*- C++ -*-
  2. // copyright : Copyright (c) 2013-2014 Code Synthesis Tools CC
  3. // license : MIT; see accompanying LICENSE file
  4. #ifndef XML_EXCEPTION
  5. #define XML_EXCEPTION
  6. #include <xml/details/pre.hxx>
  7. #include <exception>
  8. #include <xml/details/export.hxx>
  9. namespace xml
  10. {
  11. struct LIBSTUDXML_EXPORT exception: std::exception {};
  12. }
  13. #include <xml/details/post.hxx>
  14. #endif // XML_EXCEPTION