1 // file      : cutl/xml/exception.hxx
2 // copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
3 // license   : MIT; see accompanying LICENSE file
4 
5 #ifndef CUTL_XML_EXCEPTION_HXX
6 #define CUTL_XML_EXCEPTION_HXX
7 
8 #include <cutl/exception.hxx>
9 #include <cutl/details/export.hxx>
10 
11 namespace cutl
12 {
13   namespace xml
14   {
15     struct LIBCUTL_EXPORT exception: cutl::exception {};
16   }
17 }
18 
19 #endif // CUTL_XML_EXCEPTION_HXX
20