DYT/Tool/OpenSceneGraph-3.6.5/include/geos/triangulate/quadedge/LocateFailureException.h

38 lines
1.0 KiB
C
Raw Normal View History

2024-12-24 23:49:36 +00:00
/**********************************************************************
*
* GEOS - Geometry Engine Open Source
* http://geos.osgeo.org
*
* Copyright (C) 2012 Excensus LLC.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
*
* Last port: triangulate/quadedge/LocateFailureException.java r524
*
**********************************************************************/
#pragma once
#include <string>
#include <geos/util/GEOSException.h>
namespace geos {
namespace triangulate { //geos.triangulate
namespace quadedge { //geos.triangulate.quadedge
class GEOS_DLL LocateFailureException : public geos::util::GEOSException {
public:
LocateFailureException(std::string const& msg);
};
} //namespace geos.triangulate.quadedge
} //namespace geos.triangulate
} //namespace goes