| 1234567891011121314151617181920 |
- <?php
- /**
- * Class QRCodeOutputException
- *
- * @created 09.12.2015
- * @author Smiley <smiley@chillerlan.net>
- * @copyright 2015 Smiley
- * @license MIT
- */
- namespace chillerlan\QRCode\Output;
- use chillerlan\QRCode\QRCodeException;
- /**
- * An exception container
- */
- final class QRCodeOutputException extends QRCodeException{
- }
|