1
0

core-exception.inline.h 408 B

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