mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-11-08 05:07:57 +00: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);
|
|
}
|
|
}
|