43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
/**********************************************************************
|
|
*
|
|
* GEOS - Geometry Engine Open Source
|
|
* http://geos.osgeo.org
|
|
*
|
|
* Copyright (C) 2011 Sandro Santilli <strk@kbt.io>
|
|
*
|
|
* This is free software; you can redistribute and/or modify it under
|
|
* the terms of the GNU Lesser General Public Licence as published
|
|
* by the Free Software Foundation.
|
|
* See the COPYING file for more information.
|
|
*
|
|
**********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <geos/export.h>
|
|
#include <string>
|
|
|
|
#include <geos/util/GEOSException.h>
|
|
|
|
namespace geos {
|
|
namespace util { // geos::util
|
|
|
|
/// Indicates an illegal state
|
|
class GEOS_DLL IllegalStateException: public GEOSException {
|
|
public:
|
|
IllegalStateException()
|
|
:
|
|
GEOSException("IllegalStateException", "")
|
|
{}
|
|
|
|
IllegalStateException(const std::string& msg)
|
|
:
|
|
GEOSException("IllegalStateException", msg)
|
|
{}
|
|
|
|
~IllegalStateException() noexcept override {}
|
|
};
|
|
|
|
} // namespace geos::util
|
|
} // namespace geos
|