--- a/src/Types.h Sun Feb 23 17:45:34 2014 +0200 +++ b/src/Types.h Wed Feb 26 07:36:14 2014 +0200 @@ -65,23 +65,6 @@ // ============================================================================= // -class ScriptError : public std::exception -{ - public: - ScriptError (const String& msg) : - mMsg (msg) {} - - inline const char* what() const throw() - { - return mMsg; - } - - private: - String mMsg; -}; - -// ============================================================================= -// // Get absolute value of @a // template<class T> inline T abs (T a)