heymoon-cc/php-vector-tile-data-provider

View on GitHub
src/Exception/SpatialSystemException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace HeyMoon\VectorTileDataProvider\Exception;

use RuntimeException;

abstract class SpatialSystemException extends RuntimeException
{
    public function __construct(int $source, int $target)
    {
        parent::__construct("Unable to transform geometry from SRID $source to $target.");
    }
}