Answers for "'re throwing exception in c++"

C++
3

throw exception c++

#include <stdexcept>
#include <limits>
#include <iostream>

using namespace std;

void MyFunc(int c)
{
    if (c > numeric_limits< char> ::max())
        throw invalid_argument("MyFunc argument too large.");
    //...
}
Posted by: Guest on November-02-2020

Code answers related to "'re throwing exception in c++"

Browse Popular Code Answers by Language