Home | History | Annotate | Download | only in IlmImf

Lines Matching refs:exception

144     string		exception;
168 exception (),
560 catch (std::exception &e)
564 _tileBuffer->exception = e.what ();
572 _tileBuffer->exception = "unrecognized exception";
615 // Reading from the file caused an exception.
617 // re-throw the exception.
1020 // Now we check if any tile buffer contains a stored exception; if
1021 // this is the case then we re-throw the exception in this thread.
1023 // exceptions. We re-throw the first exception we find and
1027 const string *exception = 0;
1033 if (tileBuffer->hasException && !exception)
1034 exception = &tileBuffer->exception;
1039 if (exception)
1040 throw Iex::IoExc (*exception);