/
thomas-king
/
ArgumentsParser
Обзор
Документация
Войти
/
thomas-king
/
ArgumentsParser
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
include/Library/Error.h
32 строки
542 B
Ace Rodstin
Fix tests
20 ноя 2023, 21:08
20 ноя 2023, 21:08
9e5189b
Код
Авторство
О чём код?
// // Error.h // Library // // Created by Ace Rodstin on 11/14/23. // Updated by Ace Rodstin on 11/14/23. // // Copyright Ace Rodstin. All rights reserved. // #ifndef LIB_ERROR_HEADER_FILE #define LIB_ERROR_HEADER_FILE #include <exception> #include <string> #include <sstream> using namespace std; namespace lib { class Error: public exception { public: using int_type = string::size_type; virtual string message() const; string emphasis(int_type position, int_type length) const; }; } #endif