summaryrefslogtreecommitdiffstats
path: root/raul/Exception.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Exception.hpp')
-rw-r--r--raul/Exception.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/raul/Exception.hpp b/raul/Exception.hpp
index 4969ab2..b73a5a5 100644
--- a/raul/Exception.hpp
+++ b/raul/Exception.hpp
@@ -20,6 +20,8 @@
#ifndef RAUL_EXCEPTION_HPP
#define RAUL_EXCEPTION_HPP
+namespace Raul {
+
/** An exception (unexpected error). */
class Exception : public std::exception {
public:
@@ -31,4 +33,6 @@ private:
const std::string _what;
};
+} // namespace Raul
+
#endif // RAUL_EXCEPTION_HPP