File: exception.h

package info (click to toggle)
flightcrew 0.9.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 6,748 kB
  • sloc: cpp: 53,736; xml: 2,006; ansic: 275; python: 215; sh: 112; makefile: 8; exp: 8
file content (66 lines) | stat: -rw-r--r-- 2,026 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/************************************************************************
**
**  Copyright (C) 2010  Strahinja Markovic
**
**  This file is part of FlightCrew.
**
**  FlightCrew is free software: you can redistribute it and/or modify
**  it under the terms of the GNU Lesser General Public License as published
**  by the Free Software Foundation, either version 3 of the License, or
**  (at your option) any later version.
**
**  FlightCrew is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**  GNU Lesser General Public License for more details.
**
**  You should have received a copy of the GNU Lesser General Public License
**  along with FlightCrew.  If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/

#pragma once
#ifndef EXCEPTION_H
#define EXCEPTION_H

#include <boost/exception/all.hpp>

namespace FlightCrew
{

#define boost_throw(x) BOOST_THROW_EXCEPTION(x)

// FlightCrew uses the "Exception types as semantic tags" idiom.
// For more information, see this link:
//   http://www.boost.org/doc/libs/1_44_0/libs/exception/doc/exception_types_as_simple_semantic_tags.html

/**
 * The common base for all exceptions.
 */
struct ExceptionBase: virtual std::exception, virtual boost::exception {};

/**
 * Thrown when a file does not exist.
 */
struct FileDoesNotExistEx : virtual ExceptionBase {};
typedef boost::error_info< struct file_path, std::string > ei_FilePath;

/**
 * Thrown when a file is not in utf-8/16.
 */
struct FileNotInUnicodeEx : virtual ExceptionBase {};

/**
 * Thrown when a path is not in utf-8.
 */
struct PathNotInUtf8 : virtual ExceptionBase {};

/**
 * Thrown when the Xerces parser gives us null for a document.
 */
struct XercesParsingError : virtual ExceptionBase {};


} // namespace FlightCrew

#endif // EXCEPTION_H