summaryrefslogtreecommitdiffstats
path: root/src/Exceptions
diff options
context:
space:
mode:
Diffstat (limited to 'src/Exceptions')
-rw-r--r--src/Exceptions/ApiErrorException.php7
-rw-r--r--src/Exceptions/InvalidScopeException.php7
-rw-r--r--src/Exceptions/MissingApiParameterException.php7
3 files changed, 21 insertions, 0 deletions
diff --git a/src/Exceptions/ApiErrorException.php b/src/Exceptions/ApiErrorException.php
new file mode 100644
index 0000000..0f808be
--- /dev/null
+++ b/src/Exceptions/ApiErrorException.php
@@ -0,0 +1,7 @@
+<?php
+namespace BjoernrDe\SSLLabsApi\Exceptions;
+
+class ApiErrorException extends \Exception
+{
+
+} \ No newline at end of file
diff --git a/src/Exceptions/InvalidScopeException.php b/src/Exceptions/InvalidScopeException.php
new file mode 100644
index 0000000..15d0ab9
--- /dev/null
+++ b/src/Exceptions/InvalidScopeException.php
@@ -0,0 +1,7 @@
+<?php
+namespace BjoernrDe\SSLLabsApi\Exceptions;
+
+class InvalidScopeException extends \Exception
+{
+
+} \ No newline at end of file
diff --git a/src/Exceptions/MissingApiParameterException.php b/src/Exceptions/MissingApiParameterException.php
new file mode 100644
index 0000000..39db939
--- /dev/null
+++ b/src/Exceptions/MissingApiParameterException.php
@@ -0,0 +1,7 @@
+<?php
+namespace BjoernrDe\SSLLabsApi\Exceptions;
+
+class MissingApiParameterException extends \Exception
+{
+
+} \ No newline at end of file