Lines Matching refs:exception
198 string exception;
217 exception (),
812 catch (std::exception &e)
816 _tileBuffer->exception = e.what ();
824 _tileBuffer->exception = "unrecognized exception";
985 // exception.
1259 // Now we check if any tile buffer contains a stored exception; if
1260 // this is the case then we re-throw the exception in this thread.
1262 // exceptions. We re-throw the first exception we find and
1266 const string *exception
1272 if (tileBuffer->hasException && !exception)
1273 exception = &tileBuffer->exception;
1278 if (exception)
1279 throw Iex::IoExc (*exception);