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

namespace EduVpn\Common;

/** Signature timestamp smaller than specified minimum signing time (rollback). */
final class SignatureTooOldException extends VerifyException
{
	public function __construct()
	{
		parent::__construct('replay of previous signature (rollback)', 4);
	}
}