| 5 | namespace obe::Graphics::Exceptions |
| 6 | { |
| 7 | class ReadOnlyTexture : public Exception |
| 8 | { |
| 9 | public: |
| 10 | ReadOnlyTexture(std::string_view method, DebugInfo info) |
| 11 | : Exception("ReadOnlyTexture", info) |
| 12 | { |
| 13 | this->error( |
| 14 | "Impossible to call method Texture::{} when Texture is in readonly-mode", |
| 15 | method); |
| 16 | } |
| 17 | }; |
| 18 | |
| 19 | class ImageFileNotFound : public Exception |
| 20 | { |
no outgoing calls
no test coverage detected