Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 09:50:17

0001 // Boost.Geometry (aka GGL, Generic Geometry Library)
0002 
0003 // Copyright (c) 2014-2015, Oracle and/or its affiliates.
0004 
0005 // Licensed under the Boost Software License version 1.0.
0006 // http://www.boost.org/users/license.html
0007 
0008 // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
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 }} // boost::geometry
0032 
0033 #endif // BOOST_GEOMETRY_OVERLAY_NO_THROW
0034 
0035 #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_OVERLAY_INCONSISTENT_TURNS_EXCEPTION_HPP