10 lines
115 B
PHP
10 lines
115 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class NoCoordinatesException extends RuntimeException
|
|
{
|
|
}
|