12345678910111213141516171819202122232425 |
- #ifndef ILLEGAL_OPERATION_EXCEPTION_HPP
- #define ILLEGAL_OPERATION_EXCEPTION_HPP
- #include <exception>
- namespace ls_std {
- class IllegalOperationException : public std::exception {
- public:
- const char *what() const noexcept override {
- return "operation is not valid...";
- }
- };
- }
- #endif
|