/
thomas-king
/
Raze
Обзор
Документация
Войти
/
thomas-king
/
Raze
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
include/Library/Error.h
32 строки
551 B
Ace Rodstin
Add shell library. Fix tests.
22 ноя 2023, 12:31
22 ноя 2023, 12:31
8b88ae3
Код
Авторство
О чём код?
// // Error.h // Library // // Created by Ace Rodstin on 11/14/23. // Updated by Ace Rodstin on 11/14/23. // // Copyright (C) Ace Rodstin 2023. 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