Skip to content

Commit 57b0937

Browse files
Update src/ystdlib/error_handling/TraceableException.hpp
Co-authored-by: kirkrodrigues <[email protected]>
1 parent 193fe11 commit 57b0937

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/ystdlib/error_handling/TraceableException.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,12 @@ class TraceableException : public std::exception {
6363
};
6464
} // namespace ystdlib::error_handling
6565

66+
// NOLINTBEGIN(bugprone-macro-parentheses, cppcoreguidelines-macro-usage)
6667
/**
67-
* The macro to define a `TraceableException` class with the given class name T.
68+
* Defines a derived `TraceableException` class with the given class name.
69+
*
70+
* @param T The class' name.
6871
*/
69-
// NOLINTBEGIN(bugprone-macro-parentheses, cppcoreguidelines-macro-usage)
7072
#define YSTDLIB_ERROR_HANDLING_DEFINE_TRACEABLE_EXCEPTION(T) \
7173
class T : public ystdlib::error_handling::TraceableException { \
7274
using ystdlib::error_handling::TraceableException::TraceableException; \

0 commit comments

Comments
 (0)