mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
artf4107: Replaced throw() with noexcept
Change-Id: I05bb06f6485120da05ce22c464b41f3cb0a0e00e
This commit is contained in:
@@ -15,7 +15,7 @@ class BadMessageException : public std::exception
|
||||
{
|
||||
public:
|
||||
BadMessageException(const char* message);
|
||||
~BadMessageException() throw ();
|
||||
~BadMessageException() noexcept;
|
||||
const char* what() const noexcept;
|
||||
private:
|
||||
std::string message;
|
||||
|
||||
Reference in New Issue
Block a user