Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | ** EPITECH PROJECT, 2024 | ||
3 | ** zappy | ||
4 | ** File description: | ||
5 | ** GuiException | ||
6 | */ | ||
7 | |||
8 | #ifndef GUIEXCEPTION_HPP | ||
9 | #define GUIEXCEPTION_HPP | ||
10 | |||
11 | #include "Exception.hpp" | ||
12 | |||
13 | class guiException final : public utils::Exception { | ||
14 | public: | ||
15 | 30 | guiException(const std::string &message) : Exception("GUI", message) {} | |
16 | }; | ||
17 | |||
18 | #endif // GUIEXCEPTION_HPP | ||
19 |