epr24pr3_ojanssen2_dummed_d.../Exceptions/UnkownAction.h

26 lines
369 B
C++

//
// Created by moonleay on 12/17/24.
//
#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