1<?php
2
3namespace geoPHP\Exception;
4
5/**
6 * Class InvalidGeometryException
7 * Invalid geometry means that it doesn't meet the basic requirements to be valid
8 * Eg. a LineString with only one point
9 *
10 * @package geoPHP\Exception
11 */
12class InvalidGeometryException extends \Exception
13{
14}
15