/
Puzzman
/
basic_programming
Обзор
Документация
Войти
/
Puzzman
/
basic_programming
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
homework_11_5/Lib/Error/Error.h
19 строк
278 B
Puzzanis
refactor
10 сен 2024, 18:25
10 сен 2024, 18:25
19818de
Код
Авторство
О чём код?
#ifndef ERROR_SHAPE_H #define ERROR_SHAPE_H #include <iostream> #include <exception> #include <string> class Error : public std::exception { private: std::string error{ "" }; public: Error(std::string setError); const char* what() const noexcept override; }; #endif