#include <iostream>
#include <stdexcept>
using namespace std;

class CustomException : public exception
{
	string Reason;
public:
	CustomException(const char* why) : Reason(why) {}
	
	virtual const char* what() const
	{
		return Reason.c_str();
	}
};

int main() {
	return 0;
}