try
{
bool numericname=false;
std::cout <<"\n\nEnter the Name of Customer: ";
std::getline(cin,Name);
std::cout<<"\nEnter the Number of Customer: ";
std::cin>>Number;
std::string::iterator i=Name.begin();
while(i!=Name.end())
{
if(isdigit(*i))
{
numericname=true;
}
i++;
}
if(numericname)
{
throw "Name cannot be numeric.";
}
} catch(string message)
{
cout<<"\nError Found: "<< message <<"\n\n";
}
Почему я получаю необработанную ошибку исключения? Даже после того, как я добавил блок catch для перехвата брошенных строковых сообщений?
"Name cannot be numeric."
это не std::string
, это const char*
так что вам нужно поймать это так:
try
{
throw "foo";
}
catch (const char* message)
{
std::cout << message;
}
Поймать «фу» как std::string
вам нужно бросить / поймать это так:
try
{
throw std::string("foo");
}
catch (std::string message)
{
std::cout << message;
}
Вы должны отправить std::exception
вместо этого, как throw std::logic_error("Name cannot be numeric")
затем вы можете поймать его с помощью polymorphsim, и основной тип вашего броска больше не будет проблемой:
try
{
throw std::logic_error("Name cannot be numeric");
// this can later be any type derived from std::exception
}
catch (std::exception& message)
{
std::cout << message.what();
}