it-exception.inline.h 413 B

1234567891011121314151617
  1. #ifndef AFUN_IT_EXCEPTION_INLINE_H
  2. #define AFUN_IT_EXCEPTION_INLINE_H
  3. #include "it-exception.h"
  4. namespace aFunit {
  5. inline aFunitException::aFunitException(const std::string &msg) : aFunException{msg} {
  6. }
  7. inline readerFileOpenError::readerFileOpenError(const aFuntool::FilePath &file)
  8. : aFunitException("Reader cannot open file: " + file) {
  9. }
  10. }
  11. #endif //AFUN_IT_EXCEPTION_INLINE_H