/
plato
/
exceptions
Обзор
Документация
Войти
/
plato
/
exceptions
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
ex2/src/exceptions.cpp
12 строк
365 B
Evanivan
first_commit
11 окт 2025, 17:35
11 окт 2025, 17:35
545c406
Код
Авторство
О чём код?
#include "exceptions.h" FigureException::FigureException(const std::string& msg) : std::domain_error(msg), message(msg) {} const char* FigureException::what() const noexcept { return message.c_str(); } std::string FigureException::getDetails() const { return "Ошибка создания фигуры. Причина: " + message + "\n"; }