Skip to content

Commit

Permalink
Fix documentation of BitException
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed May 18, 2024
1 parent 6331f32 commit c716998
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/bit7z/bitexception.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ class BitException final : public std::system_error {
*
* @param message the message associated with the exception object.
* @param files the vector of files that failed, with the corresponding error codes.
* @param code the HRESULT code associated with the exception object.
* @param code the error code associated with the exception object.
*/
explicit BitException( const char* message, std::error_code code, FailedFiles&& files = {} );

/**
* @brief Constructs a BitException object with the given message, and the specific file that failed.
*
* @param message the message associated with the exception object.
* @param code the HRESULT code associated with the exception object.
* @param code the error code associated with the exception object.
* @param file the file that failed during the operation.
*/
BitException( const char* message, std::error_code code, tstring&& file );
Expand All @@ -60,7 +60,7 @@ class BitException final : public std::system_error {
* @brief Constructs a BitException object with the given message, and the specific file that failed.
*
* @param message the message associated with the exception object.
* @param code the HRESULT code associated with the exception object.
* @param code the error code associated with the exception object.
* @param file the file that failed during the operation.
*/
BitException( const char* message, std::error_code code, const tstring& file );
Expand Down

0 comments on commit c716998

Please sign in to comment.