diff options
| author | Peter Nguyen <peteralistairnguyen@gmail.com> | 2025-02-05 00:44:12 -0600 |
|---|---|---|
| committer | Peter Nguyen <peteralistairnguyen@gmail.com> | 2025-02-05 00:44:12 -0600 |
| commit | 110dc2831488937c1afb70c11657a341912fc8cd (patch) | |
| tree | 16b35df40e150d68344337b17c800b04b1435355 /vendor/vlucas/phpdotenv/src/Exception | |
Initial commit 2/25/2025
Diffstat (limited to 'vendor/vlucas/phpdotenv/src/Exception')
5 files changed, 60 insertions, 0 deletions
diff --git a/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php b/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php new file mode 100644 index 0000000..1e80f53 --- /dev/null +++ b/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); + +namespace Dotenv\Exception; + +use Throwable; + +interface ExceptionInterface extends Throwable +{ + // +} diff --git a/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php b/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php new file mode 100644 index 0000000..f02f8e4 --- /dev/null +++ b/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); + +namespace Dotenv\Exception; + +use InvalidArgumentException; + +final class InvalidEncodingException extends InvalidArgumentException implements ExceptionInterface +{ + // +} diff --git a/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php b/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php new file mode 100644 index 0000000..6e878a5 --- /dev/null +++ b/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); + +namespace Dotenv\Exception; + +use InvalidArgumentException; + +final class InvalidFileException extends InvalidArgumentException implements ExceptionInterface +{ + // +} diff --git a/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php b/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php new file mode 100644 index 0000000..ee836a7 --- /dev/null +++ b/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); + +namespace Dotenv\Exception; + +use InvalidArgumentException; + +final class InvalidPathException extends InvalidArgumentException implements ExceptionInterface +{ + // +} diff --git a/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php b/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php new file mode 100644 index 0000000..3d6773a --- /dev/null +++ b/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); + +namespace Dotenv\Exception; + +use RuntimeException; + +final class ValidationException extends RuntimeException implements ExceptionInterface +{ + // +} |
