38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
/**********************************************************************
|
|
*
|
|
* 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
|
|
|