Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php')
-rw-r--r--laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php b/laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php
new file mode 100644
index 00000000..b664e00a
--- /dev/null
+++ b/laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php
@@ -0,0 +1,19 @@
+<?php
+
+namespace Laravel\SerializableClosure\Exceptions;
+
+use Exception;
+
+class PhpVersionNotSupportedException extends Exception
+{
+ /**
+ * Create a new exception instance.
+ *
+ * @param string $message
+ * @return void
+ */
+ public function __construct($message = 'PHP 7.3 is not supported.')
+ {
+ parent::__construct($message);
+ }
+}