exceptions.cpp 697 B

12345678910111213141516171819
  1. #include "yaml-cpp/exceptions.h"
  2. namespace YAML {
  3. // These destructors are defined out-of-line so the vtable is only emitted once.
  4. Exception::~Exception() NOEXCEPT {}
  5. ParserException::~ParserException() NOEXCEPT {}
  6. RepresentationException::~RepresentationException() NOEXCEPT {}
  7. InvalidScalar::~InvalidScalar() NOEXCEPT {}
  8. KeyNotFound::~KeyNotFound() NOEXCEPT {}
  9. InvalidNode::~InvalidNode() NOEXCEPT {}
  10. BadConversion::~BadConversion() NOEXCEPT {}
  11. BadDereference::~BadDereference() NOEXCEPT {}
  12. BadSubscript::~BadSubscript() NOEXCEPT {}
  13. BadPushback::~BadPushback() NOEXCEPT {}
  14. BadInsert::~BadInsert() NOEXCEPT {}
  15. EmitterException::~EmitterException() NOEXCEPT {}
  16. BadFile::~BadFile() NOEXCEPT {}
  17. }