![]() |
Mako 8.2.0 API
MakoCore SDK API Documentation
|
An abstract class for EDL exceptions. More...
#include <edl/edlerrors.h>
Public Member Functions | |
virtual uint32 | getErrorCode () const =0 |
virtual EDLString | getErrorDescription (const EDLString &formatErrorString)=0 |
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 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 }
|
pure virtual |
|
pure virtual |