Add noexcept specifier to XChunkException and WritingException

This commit is contained in:
Jan
2021-03-17 23:25:58 +01:00
parent 0bd4160956
commit 1c35f43c25
4 changed files with 4 additions and 4 deletions

View File

@ -11,6 +11,6 @@ class XChunkException final : public std::exception
public:
explicit XChunkException(std::string message);
_NODISCARD char const* what() const override;
_NODISCARD char const* what() const noexcept override;
_NODISCARD const std::string& Message() const;
};