Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

what is throw in c++

//throw "throws" an exception.
  
It is usually used like:

if(something isnt right){
  throw somethingee;
}

/*(std::)*/cout << somethingee;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #throw
ADD COMMENT
Topic
Name
5+4 =