12345678910111213141516171819202122 |
- #include "stdafx.h"
- #include "FbxLoadException.h"
- FbxLoadException::FbxLoadException(const char* message) : std::exception(message)
- {
- }
- FbxLoadException::~FbxLoadException()
- {
- }
- UnknownVertexTypeException::UnknownVertexTypeException(const char* message) : std::exception(message)
- {
- }
- UnknownVertexTypeException::~UnknownVertexTypeException()
- {
- }
|