blob: 03cd9bb87cf3cbf865d4bccd0a6f112885cac717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// file : xml/exception -*- C++ -*-
// copyright : Copyright (c) 2013-2014 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef XML_EXCEPTION
#define XML_EXCEPTION
#include <xml/details/pre.hxx>
#include <exception>
namespace xml
{
class exception: public std::exception {};
}
#include <xml/details/post.hxx>
#endif // XML_EXCEPTION
|