| 25 | using std::stringstream; |
| 26 | |
| 27 | FgError::FgError(const char * const pFuncName, |
| 28 | const char * const pFileName, |
| 29 | const int pLineNumber, |
| 30 | const char * const pMessage, ErrorCode pErrCode) |
| 31 | : logic_error (pMessage), |
| 32 | mFuncName (pFuncName), |
| 33 | mFileName (pFileName), |
| 34 | mLineNumber (pLineNumber), |
| 35 | mErrCode (pErrCode) |
| 36 | {} |
| 37 | |
| 38 | FgError::FgError(string pFuncName, |
| 39 | string pFileName, |
nothing calls this directly
no outgoing calls
no test coverage detected