Mako 7.2.0 API
Loading...
Searching...
No Matches
IEDLError Class Referenceabstract

An abstract class for EDL exceptions. More...

#include <edlerrors.h>

Inherits std::exception.

Detailed Description

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
   }

The documentation for this class was generated from the following file: