| 34 | extern void hexdump(std::ostream& stream, const Bytes& bytes); |
| 35 | |
| 36 | struct ErrorException : public std::exception |
| 37 | { |
| 38 | ErrorException(const std::string& message): message(message) {} |
| 39 | |
| 40 | const std::string message; |
| 41 | |
| 42 | const char* what() const throw() override; |
| 43 | void print() const; |
| 44 | }; |
| 45 | |
| 46 | struct OutOfRangeException : public ErrorException |
| 47 | { |