diff options
author | David Robillard <d@drobilla.net> | 2020-11-12 01:11:11 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-12 01:47:40 +0100 |
commit | bf9190ef628c1aa04791af1bd7cd4905e9c24658 (patch) | |
tree | 56114c93a8ec689cd15497059958dad03a1ee2ce /include/raul/Exception.hpp | |
parent | 496e70e420811c7d744a8bcc44a2ac1b51b676b5 (diff) | |
download | raul-bf9190ef628c1aa04791af1bd7cd4905e9c24658.tar.gz raul-bf9190ef628c1aa04791af1bd7cd4905e9c24658.tar.bz2 raul-bf9190ef628c1aa04791af1bd7cd4905e9c24658.zip |
Move includes to a conventional include directory
Diffstat (limited to 'include/raul/Exception.hpp')
-rw-r--r-- | include/raul/Exception.hpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/include/raul/Exception.hpp b/include/raul/Exception.hpp new file mode 100644 index 0000000..da4a0e0 --- /dev/null +++ b/include/raul/Exception.hpp @@ -0,0 +1,40 @@ +/* + This file is part of Raul. + Copyright 2007-2012 David Robillard <http://drobilla.net> + + Raul is free software: you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation, either version 3 of the License, or any later version. + + Raul 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Raul. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include <exception> +#include <string> +#include <utility> + +#ifndef RAUL_EXCEPTION_HPP +#define RAUL_EXCEPTION_HPP + +namespace Raul { + +/** An exception (unexpected error). */ +class Exception : public std::exception { +public: + const char* what() const noexcept override { return _what.c_str(); } + +protected: + explicit Exception(std::string what) : _what(std::move(what)) {} + +private: + const std::string _what; +}; + +} // namespace Raul + +#endif // RAUL_EXCEPTION_HPP |