mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
12 lines
193 B
PHP
12 lines
193 B
PHP
<?php
|
|
|
|
namespace Infinito\Exception;
|
|
|
|
final class NotDefinedException extends \Exception
|
|
{
|
|
public function __construct($message = null)
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|