FbxLoadException.cpp 354 B

12345678910111213141516171819202122
  1. #include "stdafx.h"
  2. #include "FbxLoadException.h"
  3. FbxLoadException::FbxLoadException(const char* message) : std::exception(message)
  4. {
  5. }
  6. FbxLoadException::~FbxLoadException()
  7. {
  8. }
  9. UnknownVertexTypeException::UnknownVertexTypeException(const char* message) : std::exception(message)
  10. {
  11. }
  12. UnknownVertexTypeException::~UnknownVertexTypeException()
  13. {
  14. }