xref: /llvm-project/clang-tools-extra/docs/clang-tidy/checks/cert/err60-cpp.rst (revision 6e566bc5523f743bc34a7e26f050f1f2b4d699a8)
1.. title:: clang-tidy - cert-err60-cpp
2
3cert-err60-cpp
4==============
5
6This check flags all throw expressions where the exception object is not nothrow
7copy constructible.
8
9This check corresponds to the CERT C++ Coding Standard rule
10`ERR60-CPP. Exception objects must be nothrow copy constructible
11<https://www.securecoding.cert.org/confluence/display/cplusplus/ERR60-CPP.+Exception+objects+must+be+nothrow+copy+constructible>`_.
12