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, 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);
- }
-}