summaryrefslogtreecommitdiff
path: root/wrappers/php/src/InvalidSignatureUnknownKeyException.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/InvalidSignatureUnknownKeyException.php
parent7e309b67de74fe5bd5a1c70c1880c2a381c4f78b (diff)
Remove: unused wrappers
Diffstat (limited to 'wrappers/php/src/InvalidSignatureUnknownKeyException.php')
-rw-r--r--wrappers/php/src/InvalidSignatureUnknownKeyException.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/wrappers/php/src/InvalidSignatureUnknownKeyException.php b/wrappers/php/src/InvalidSignatureUnknownKeyException.php
deleted file mode 100644
index 73a535e..0000000
--- a/wrappers/php/src/InvalidSignatureUnknownKeyException.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php declare(strict_types=1);
-
-namespace EduVpn\Common;
-
-/** Signature was created with an unknown key and has not been verified. */
-final class InvalidSignatureUnknownKeyException extends VerifyException
-{
- public function __construct()
- {
- parent::__construct('invalid signature (unknown key)', 3);
- }
-}