QRCodeException.php 318 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Class QRCodeException
  4. *
  5. * @created 27.11.2015
  6. * @author Smiley <smiley@chillerlan.net>
  7. * @copyright 2015 Smiley
  8. * @license MIT
  9. */
  10. declare(strict_types=1);
  11. namespace chillerlan\QRCode;
  12. use Exception;
  13. /**
  14. * An exception container
  15. */
  16. class QRCodeException extends Exception{
  17. }