Closed
Description
Remove the Exception class and all references to it (see issue #13).
From Issue #13
In an effort to reduce unnecessary code and to conform with modern C++ standards, the Exception class should be deprecated in favor of using exception classes derived from std::runtime_exception. This will provide a much cleaner interface, allows the rest of the library to throw specific exception types where applicable and set exception messages using a standard interface.
Activity