| 36 | #include <sstream> |
| 37 | |
| 38 | FFMS_Exception::FFMS_Exception(int ErrorType, int SubType, const char *Message) : _Message(Message), _ErrorType(ErrorType), _SubType(SubType) {} |
| 39 | FFMS_Exception::FFMS_Exception(int ErrorType, int SubType, const std::string &Message) : _Message(Message), _ErrorType(ErrorType), _SubType(SubType) {} |
| 40 | |
| 41 | int FFMS_Exception::CopyOut(FFMS_ErrorInfo *ErrorInfo) const { |
nothing calls this directly
no outgoing calls
no test coverage detected