/
plato
/
exceptions
Обзор
Документация
Войти
/
plato
/
exceptions
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
ex2/includes/exceptions.h
15 строк
327 B
Evanivan
first_commit
11 окт 2025, 17:35
11 окт 2025, 17:35
545c406
Код
Авторство
О чём код?
#pragma once #include <exception> #include <string> class FigureException : public std::domain_error { protected: std::string message; public: FigureException(const std::string& msg); virtual ~FigureException() = default; const char* what() const noexcept override; std::string getDetails() const; };