use 'noexcept' instead of the deprecated 'throw()'

This commit is contained in:
Axel Kohlmeyer
2021-10-12 21:29:33 -04:00
parent 7b6a3c4307
commit dd6f49a753
4 changed files with 8 additions and 8 deletions

View File

@ -26,9 +26,9 @@ class LAMMPSException : public std::exception {
LAMMPSException(const std::string &msg) : message(msg) {}
~LAMMPSException() throw() {}
~LAMMPSException() noexcept {}
virtual const char *what() const throw() { return message.c_str(); }
virtual const char *what() const noexcept { return message.c_str(); }
};
class LAMMPSAbortException : public LAMMPSException {