Implemented better exceptions
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2019-10-31 13:26:56 +01:00
parent ffba5fb24c
commit 65f814b006
9 changed files with 55 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
#ifndef CREATURELIB_NOTREACHABLEEXCEPTION_HPP
#define CREATURELIB_NOTREACHABLEEXCEPTION_HPP
#include "CreatureException.hpp"
class NotReachableException : CreatureException{
public:
NotReachableException() : CreatureException("Not Reachable"){};
};
#endif //CREATURELIB_NOTREACHABLEEXCEPTION_HPP