Home | History | Annotate | Download | only in IlmImf

Lines Matching refs:exception

135     string		exception;
155 exception (),
628 catch (std::exception &e)
632 _lineBuffer->exception = e.what ();
640 _lineBuffer->exception = "unrecognized exception";
780 // exception.
1099 // Now we check if any line buffer contains a stored exception; if
1100 // this is the case then we re-throw the exception in this thread.
1102 // exceptions. We re-throw the first exception we find and
1106 const string *exception = 0;
1112 if (lineBuffer->hasException && !exception)
1113 exception = &lineBuffer->exception;
1118 if (exception)
1119 throw Iex::IoExc (*exception);