#ifndef CREATURELIB_NOTIMPLEMENTEDEXCEPTION_HPP #define CREATURELIB_NOTIMPLEMENTEDEXCEPTION_HPP #include "CreatureException.hpp" class NotImplementedException : CreatureException { public: NotImplementedException(std::string error) : CreatureException(error) {} NotImplementedException() : CreatureException("Not Implemented") {} }; #endif // CREATURELIB_NOTIMPLEMENTEDEXCEPTION_HPP