12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Remote\Exception;
|
|
|
|
use App\Service\Exception\QRCodeGeneratorException;
|
|
|
|
class UsetrenoQRCodeException extends QRCodeGeneratorException
|
|
{
|
|
|
|
}
|