11 lines
113 B
PHP
11 lines
113 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class RepositoryException extends RuntimeException
|
|
{
|
|
|
|
}
|