13 lines
394 B
C++
13 lines
394 B
C++
#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
|