Alter Version
This commit is contained in:
65
vendor/Shapefile/ShapefileException.php
vendored
Normal file
65
vendor/Shapefile/ShapefileException.php
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* PHP Shapefile - PHP library to read and write ESRI Shapefiles, compatible with WKT and GeoJSON
|
||||
*
|
||||
* @package Shapefile
|
||||
* @author Gaspare Sganga
|
||||
* @version 3.3.0
|
||||
* @license MIT
|
||||
* @link https://gasparesganga.com/labs/php-shapefile/
|
||||
*/
|
||||
|
||||
namespace Shapefile;
|
||||
|
||||
/**
|
||||
* Exception thrown by this library.
|
||||
*/
|
||||
class ShapefileException extends \Exception
|
||||
{
|
||||
/**
|
||||
* @var string Error type that raised the exception.
|
||||
*/
|
||||
private $error_type;
|
||||
|
||||
/**
|
||||
* @var string Additional information about the error.
|
||||
*/
|
||||
private $details;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param string $error_type Error type.
|
||||
* @param string $details Optional information about the error.
|
||||
*/
|
||||
public function __construct($error_type, $details = '')
|
||||
{
|
||||
$this->error_type = $error_type;
|
||||
$this->details = $details;
|
||||
|
||||
$message = constant('Shapefile\Shapefile::' . $error_type . '_MESSAGE');
|
||||
parent::__construct($message, 0, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets internal error type.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getErrorType()
|
||||
{
|
||||
return $this->error_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets error details.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getDetails()
|
||||
{
|
||||
return $this->details;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user