summaryrefslogtreecommitdiffstats
path: root/raul/Exception.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-11-21 05:37:58 +0000
committerDavid Robillard <d@drobilla.net>2012-11-21 05:37:58 +0000
commit994084dd6ace5489d741a825bc381aa38963ef57 (patch)
treed03f82c7635ced2eac339cc01827a28251b37776 /raul/Exception.hpp
parentb1f1e98ff6ae6b01a17e1fb422900fa99d735d28 (diff)
downloadraul-994084dd6ace5489d741a825bc381aa38963ef57.tar.gz
raul-994084dd6ace5489d741a825bc381aa38963ef57.tar.bz2
raul-994084dd6ace5489d741a825bc381aa38963ef57.zip
Move Exception inside Raul namespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4838 a436a847-0d15-0410-975c-d299462d15a1
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