Flyby SDK v0.3.0
Loading...
Searching...
No Matches
error.h
Go to the documentation of this file.
1
8#pragma once
9
10#include <exception>
11
12namespace flyby {
17 class not_implemented_error final : public std::exception {
18 public:
23
29 const char * what() { return "Function not implemented."; }
30 };
31}
An error representing a function that is not implemented.
Definition error.h:17
const char * what()
Returns the error message.
Definition error.h:29
not_implemented_error()=default
Default constructor.