12 lines
165 B
PHP
12 lines
165 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Uploads\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
final class UploadPublishValidationException extends RuntimeException
|
|
{
|
|
}
|