# HG changeset patch # User Tom Fredrik Blenning Klaussen # Date 1346874789 -7200 # Node ID 1ad6fa6dc039a4c6d7fc893f35ad978c7b034d28 # Parent fcb7a71a22c1cd5d12361610013dcbf5e1cb4b8a Added new exceptions. diff -r fcb7a71a22c1 -r 1ad6fa6dc039 InvalidDataException.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/InvalidDataException.hpp Wed Sep 05 21:53:09 2012 +0200 @@ -0,0 +1,10 @@ +#ifndef INVALIDDATAEXCEPTION_HPP +#define INVALIDDATAEXCEPTION_HPP + +#include "Exception.hpp" + +class InvalidDataException : public Exception +{ +}; + +#endif //INVALIDDATAEXCEPTION_HPP diff -r fcb7a71a22c1 -r 1ad6fa6dc039 NoSuchValueException.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/NoSuchValueException.hpp Wed Sep 05 21:53:09 2012 +0200 @@ -0,0 +1,10 @@ +#ifndef NOSUCHVALUEEXCEPTION_HPP +#define NOSUCHVALUEEXCEPTION_HPP + +#include "Exception.hpp" + +class NoSuchValueException : public Exception +{ +}; + +#endif //NOSUCHVALUEEXCEPTION_HPP