core-exception.inline.h 402 B

123456789101112131415
  1. #ifndef AFUN_CORE_EXCEPTION_INLINE_H
  2. #define AFUN_CORE_EXCEPTION_INLINE_H
  3. #include "core-exception.h"
  4. namespace aFuncore {
  5. inline aFuncoreException::aFuncoreException(const std::string &msg) : aFunException{msg} {
  6. }
  7. inline EnvironmentDestructException::EnvironmentDestructException() : aFuncoreException("Environment Destruct Error") {
  8. }
  9. }
  10. #endif //AFUN_CORE_EXCEPTION_INLINE_H