Replace throw( whatever ) with noexcept( false )
Later versions of the C++ language have removed the deprecated throw() specifier with noexcept( false ). This started with C++ 2011 which is the current minimum requirement.
Later versions of the C++ language have removed the deprecated throw() specifier with noexcept( false ). This started with C++ 2011 which is the current minimum requirement.