10 lines
161 B
PHP
10 lines
161 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Share\Exception;
|
|
|
|
use RuntimeException;
|
|
|
|
final class ShareConnectionException extends RuntimeException {}
|