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

namespace EduVpn\Common;

use Exception;

/** Verification failed, do not trust the file. */
abstract class VerifyException extends Exception
{
	public function __construct(string $message, int $code)
	{
		parent::__construct($message, $code);
	}
}