summaryrefslogtreecommitdiff
path: root/wrappers/php/src/InvalidSignatureUnknownKeyException.php
blob: 73a535e75a5336607f5313ade3d6d20bd90b3cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php declare(strict_types=1);

namespace EduVpn\Common;

/** Signature was created with an unknown key and has not been verified. */
final class InvalidSignatureUnknownKeyException extends VerifyException
{
	public function __construct()
	{
		parent::__construct('invalid signature (unknown key)', 3);
	}
}