12 lines
305 B
C++
12 lines
305 B
C++
#ifndef CREATURELIB_NOTREACHABLEEXCEPTION_HPP
|
|
#define CREATURELIB_NOTREACHABLEEXCEPTION_HPP
|
|
|
|
#include "CreatureException.hpp"
|
|
|
|
class NotReachableException : CreatureException {
|
|
public:
|
|
NotReachableException() : CreatureException("Not Reachable"){};
|
|
};
|
|
|
|
#endif // CREATURELIB_NOTREACHABLEEXCEPTION_HPP
|