12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
-
-
- namespace Zxing;
-
-
- abstract class ReaderException extends \Exception
- {
-
-
- protected static bool $isStackTrace = false;
-
- public function ReaderException($cause = null): void
- {
- if ($cause) {
- parent::__construct($cause);
- }
- }
-
-
-
-
-
-
- final public function fillInStackTrace()
- {
- return null;
- }
- }
|