! Raised whenever a write is performed out of bounds. \ingroup binaryview */
| 7722 | \ingroup binaryview |
| 7723 | */ |
| 7724 | class WriteException : public ExceptionWithStackTrace |
| 7725 | { |
| 7726 | public: |
| 7727 | WriteException() : ExceptionWithStackTrace("write out of bounds") {} |
| 7728 | }; |
| 7729 | |
| 7730 | /*! BinaryWriter is a convenience class for writing binary data |
| 7731 | \ingroup binaryview |