c++ how to program 1. (Catch Parameter) Under what circumstances would you not provide a parameter name when defining the type of the object that will be caught by a handler? code example
Example: c++ try
try {
//do
} catch (...){
//if error do
}