summaryrefslogtreecommitdiff
path: root/source/modules/asura-utils/exceptions/exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-utils/exceptions/exception.h')
-rw-r--r--source/modules/asura-utils/exceptions/exception.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/modules/asura-utils/exceptions/exception.h b/source/modules/asura-utils/exceptions/exception.h
index 9873a38..4acbc1e 100644
--- a/source/modules/asura-utils/exceptions/exception.h
+++ b/source/modules/asura-utils/exceptions/exception.h
@@ -7,23 +7,23 @@
namespace AsuraEngine
{
- class Exception : public std::exception
- {
- public:
+class Exception : public std::exception
+{
+public:
- Exception(const char *fmt, ...);
- virtual ~Exception() throw();
+ Exception(const char *fmt, ...);
+ virtual ~Exception() throw();
- inline virtual const char *what() const throw()
- {
- return message.c_str();
- }
+ inline virtual const char *what() const throw()
+ {
+ return message.c_str();
+ }
- private:
+private:
- std::string message;
+ std::string message;
- }; // Exception
+}; // Exception
}