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

namespace EduVpn\Common;

/** Signature is invalid (for the expected file type). */
final class InvalidSignatureException extends VerifyException
{
	public function __construct()
	{
		parent::__construct('invalid signature', 2);
	}
}