Revert "Started experimenting with perl/python scripts to auto rename incl guards...
[aesalon.git] / include / common / ParsingException.h
blobd025155a341e4139039d2eed525a3c69710dd9b3
1 /**
2 Aesalon, a tool to visualize a program's behaviour at run-time.
3 Copyright (C) 2010, Aesalon Development Team.
5 Aesalon is distributed under the terms of the GNU GPLv3. For more
6 licensing information, see the file LICENSE included with the distribution.
8 @file include/common/ParsingException.h
12 #ifndef AesalonCommon_ParsingException_H
13 #define AesalonCommon_ParsingException_H
15 #include "Exception.h"
17 namespace Common {
19 class ParsingException : public Exception {
20 public:
21 ParsingException(std::string message) : Exception("Parsing exception: " + message) {}
22 virtual ~ParsingException() {}
25 } // namespace Common
27 #endif