summaryrefslogtreecommitdiff
path: root/wrappers/php/src/VerifyException.php
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-20 15:07:40 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-20 15:07:40 +0200
commit2a619ceba75a4c16b25de12d59a87eac795a4468 (patch)
tree1d63a35217011fa761b703633b3f91fd839ec71e /wrappers/php/src/VerifyException.php
parent7e309b67de74fe5bd5a1c70c1880c2a381c4f78b (diff)
Remove: unused wrappers
Diffstat (limited to 'wrappers/php/src/VerifyException.php')
-rw-r--r--wrappers/php/src/VerifyException.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/wrappers/php/src/VerifyException.php b/wrappers/php/src/VerifyException.php
deleted file mode 100644
index 101f728..0000000
--- a/wrappers/php/src/VerifyException.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?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);
- }
-}