| 32 | } |
| 33 | |
| 34 | Error::Error() : mErrCode(FG_ERR_UNKNOWN) |
| 35 | { |
| 36 | stringcopy(mMessage, "Unknown Exception", sizeof(mMessage)); |
| 37 | } |
| 38 | |
| 39 | Error::Error(const char * const pMessage) |
| 40 | : mErrCode(FG_ERR_UNKNOWN) |
nothing calls this directly
no test coverage detected