#ifndef CREATURELIB_NOTREACHABLEEXCEPTION_HPP #define CREATURELIB_NOTREACHABLEEXCEPTION_HPP #include "CreatureException.hpp" class NotReachableException : CreatureException { public: NotReachableException() : CreatureException("Not Reachable"){}; }; #endif // CREATURELIB_NOTREACHABLEEXCEPTION_HPP