File indexing completed on 2025-12-15 09:50:17
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_OVERLAY_INCONSISTENT_TURNS_EXCEPTION_HPP
0011 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_OVERLAY_INCONSISTENT_TURNS_EXCEPTION_HPP
0012
0013 #if ! defined(BOOST_GEOMETRY_OVERLAY_NO_THROW)
0014 #include <boost/geometry/core/exception.hpp>
0015
0016 namespace boost { namespace geometry
0017 {
0018
0019 class inconsistent_turns_exception : public geometry::exception
0020 {
0021 public:
0022
0023 inline inconsistent_turns_exception() {}
0024
0025 char const* what() const noexcept override
0026 {
0027 return "Boost.Geometry Inconsistent Turns exception";
0028 }
0029 };
0030
0031 }}
0032
0033 #endif
0034
0035 #endif