summaryrefslogtreecommitdiff
path: root/wrappers/php/src/VerifyException.php
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/php/src/VerifyException.php')
-rw-r--r--wrappers/php/src/VerifyException.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/wrappers/php/src/VerifyException.php b/wrappers/php/src/VerifyException.php
new file mode 100644
index 0000000..101f728
--- /dev/null
+++ b/wrappers/php/src/VerifyException.php
@@ -0,0 +1,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);
+ }
+}