22 lines
326 B
C++
22 lines
326 B
C++
#ifndef UNKOWNACTION_H
|
|
#define UNKOWNACTION_H
|
|
|
|
namespace game_exceptions
|
|
{
|
|
class UnkownAction
|
|
{
|
|
string why;
|
|
|
|
public:
|
|
UnkownAction(string why): why(why)
|
|
{
|
|
}
|
|
|
|
string what()
|
|
{
|
|
return this->why;
|
|
}
|
|
};
|
|
} // game_exceptions
|
|
|
|
#endif //UNKOWNACTION_H
|