TDME2 1.9.121
ExceptionBase.h
Go to the documentation of this file.
1/**
2 * @author Andreas Drewke
3 * @version $Id: 40a4a8159e048a3026211e19a8dcb2f6a226ed81 $
4 */
5#pragma once
6
7#include <stdexcept>
8#include <string>
9
10#include <tdme/tdme.h>
12
13using std::runtime_error;
14using std::string;
15
16/**
17 * Exception base class
18 * @author Andreas Drewke
19 */
20class tdme::utilities::ExceptionBase: public runtime_error {
21 public:
22 /**
23 * @brief Public constructor
24 * @param message message Exception message
25 */
26 ExceptionBase(const string& message) throw();
27 ~ExceptionBase() throw();
28};
Exception base class.
Definition: ExceptionBase.h:20
ExceptionBase(const string &message)
Public constructor.