mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-25 13:12:22 +01:00
12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
namespace App\Exception;
|
|
|
|
class NotProcessedException extends \Exception
|
|
{
|
|
public function __construct($message = null)
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|