/
Puzzman
/
basic_programming
Обзор
Документация
Войти
/
Puzzman
/
basic_programming
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
homework_10_2/Classes/Error/Error.h
18 строк
291 B
Puzzanis
refactor
06 сен 2024, 15:48
06 сен 2024, 15:48
c39105e
Код
Авторство
О чём код?
#ifndef ERROR_DEFINE_SHAPE_H #define ERROR_DEFINE_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