LAPTOP-SNT8I5JK\Boounion
2025-04-30 d38d98d99e873d0a48e75aa9f8472cff4574c132
1
2
3
4
5
6
7
8
9
#pragma once
#include <string>
 
class IThrowable
{
public:
    virtual void printf() = 0;
    virtual std::string & getMessage() = 0;
};