mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
20 lines
375 B
C++
20 lines
375 B
C++
// file : xml/exception -*- C++ -*-
|
|
// copyright : Copyright (c) 2013-2017 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
|