for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NFePHP\Common\Exception;
/**
* @category NFePHP
* @package NFePHP\Common\Exception
* @copyright Copyright (c) 2008-2014
* @license http://www.gnu.org/licenses/lesser.html LGPL v3
* @author Roberto L. Machado <linux.rlm at gmail dot com>
* @link http://github.com/nfephp-org/sped-common for the canonical source repository
*/
class SignerException extends \RuntimeException implements ExceptionInterface
{
public static function isNotXml()
return new static('The content not is a valid XML.');
}
public static function digestComparisonFailed()
return new static('The XML content does not match the Digest Value. '
. 'Probably modified after it was signed');
public static function signatureComparisonFailed()
return new static('The XML SIGNATURE does not match. '
. 'Probably modified after it was signed.');
public static function tagNotFound($tagname)
return new static("The specified tag <$tagname> was not found in xml.");