Home | History | Annotate | Download | only in IlmImf

Lines Matching refs:exception

141     string		exception;
163 exception (),
572 catch (std::exception &e)
576 _lineBuffer->exception = e.what();
584 _lineBuffer->exception = "unrecognized exception";
626 catch (std::exception &e)
630 lineBuffer->exception = e.what();
640 // Reading from the file caused an exception.
642 // re-throw the exception.
645 lineBuffer->exception = "unrecognized exception";
953 // Now we check if any line buffer contains a stored exception; if
954 // this is the case then we re-throw the exception in this thread.
956 // exceptions. We re-throw the first exception we find and
960 const string *exception = 0;
966 if (lineBuffer->hasException && !exception)
967 exception = &lineBuffer->exception;
972 if (exception)
973 throw Iex::IoExc (*exception);