An abstract class for EDL exceptions. More...
#include <edlerrors.h>
Inherits std::exception.
An abstract class for EDL exceptions.
what() may return only a generic message. For more detailed error messages add edl/edlerrors.cpp to your project, and use IEDLError::getErrorDescription(), passing the the results of getEDLErrorString(). For example: catch (const EDL::IEDLError& e) { EDLString formatString = EDL::getEDLErrorString(e.getErrorCode()); EDLString description = e.getErrorDescription(formatString); // deal with the description as seen fit }