LAPTOP-SNT8I5JK\Boounion
2025-01-13 c6bfb4fc0801c4cb1f9dd2128df5f20d2e9cf27d
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;
};