10 lines
137 B
PHP
10 lines
137 B
PHP
<?php
|
|
|
|
namespace App\Exceptions\SchoolYear;
|
|
|
|
use RuntimeException;
|
|
|
|
final class SchoolYearNotFoundException extends RuntimeException
|
|
{
|
|
}
|