mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-23 00:23:22 +00:00
22 lines
379 B
PHP
22 lines
379 B
PHP
<?php
|
|
/**
|
|
* Class QRCodeDetectorException
|
|
*
|
|
* @created 01.12.2021
|
|
* @author smiley <smiley@chillerlan.net>
|
|
* @copyright 2021 smiley
|
|
* @license MIT
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace chillerlan\QRCode\Detector;
|
|
|
|
use chillerlan\QRCode\QRCodeException;
|
|
|
|
/**
|
|
* An exception container
|
|
*/
|
|
final class QRCodeDetectorException extends QRCodeException{
|
|
|
|
}
|