[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Exception/ -> ParserException.php (source)

   1  <?php
   2  /*
   3   * This file is part of the PHPASN1 library.
   4   *
   5   * Copyright © Friedrich Große <[email protected]>
   6   *
   7   * For the full copyright and license information, please view the LICENSE
   8   * file that was distributed with this source code.
   9   */
  10  
  11  namespace FG\ASN1\Exception;
  12  
  13  class ParserException extends \Exception
  14  {
  15      private $errorMessage;
  16      private $offset;
  17  
  18      public function __construct($errorMessage, $offset)
  19      {
  20          $this->errorMessage = $errorMessage;
  21          $this->offset = $offset;
  22          parent::__construct("ASN.1 Parser Exception at offset {$this->offset}: {$this->errorMessage}");
  23      }
  24  
  25      public function getOffset()
  26      {
  27          return $this->offset;
  28      }
  29  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer