mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
16 lines
404 B
C++
16 lines
404 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_EXCEPTIONS_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_EXCEPTIONS_H
|
||
|
|
||
|
#include <stdexcept>
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct NavigatorException : std::runtime_error
|
||
|
{
|
||
|
NavigatorException(const std::string& message) : std::runtime_error(message) {}
|
||
|
NavigatorException(const char* message) : std::runtime_error(message) {}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|