GEOS
3.6.2
|
00001 /********************************************************************** 00002 * 00003 * GEOS - Geometry Engine Open Source 00004 * http://geos.osgeo.org 00005 * 00006 * Copyright (C) 2012 Excensus LLC. 00007 * 00008 * This is free software; you can redistribute and/or modify it under 00009 * the terms of the GNU Lesser General Licence as published 00010 * by the Free Software Foundation. 00011 * See the COPYING file for more information. 00012 * 00013 ********************************************************************** 00014 * 00015 * Last port: triangulate/quadedge/LocateFailureException.java r524 00016 * 00017 **********************************************************************/ 00018 00019 #ifndef GEOS_TRIANGULATE_QUADEDGE_LOCATEFAILUREEXCEPTION_H 00020 #define GEOS_TRIANGULATE_QUADEDGE_LOCATEFAILUREEXCEPTION_H 00021 00022 #include <string> 00023 00024 #include <geos/util.h> 00025 00026 namespace geos { 00027 namespace triangulate { //geos.triangulate 00028 namespace quadedge { //geos.triangulate.quadedge 00029 00030 class GEOS_DLL LocateFailureException : public geos::util::GEOSException { 00031 public: 00032 LocateFailureException(std::string const&msg); 00033 }; 00034 00035 } //namespace geos.triangulate.quadedge 00036 } //namespace geos.triangulate 00037 } //namespace goes 00038 00039 #endif //GEOS_TRIANGULATE_QUADEDGE_LOCATEFAILUREEXCEPTION_H 00040