summaryrefslogtreecommitdiff
path: root/zenxml/error.h
blob: a90dd35a83d9a69e5dab573d7761d03a9c2cd08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// **************************************************************************
// * This file is part of the zenXML project. It is distributed under the   *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt           *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved        *
// **************************************************************************

#ifndef ZEN_XML_ERROR_HEADER_018734618433021489473214873214
#define ZEN_XML_ERROR_HEADER_018734618433021489473214873214

namespace zen
{
///Exception base class for zenXML
struct XmlError
{
    virtual ~XmlError() {}
};
}

#endif //ZEN_XML_ERROR_HEADER_018734618433021489473214873214
bgstack15