From 553bf5ede0301807085bd2344d6a8b4c5a539a7d Mon Sep 17 00:00:00 2001 From: Netkas Date: Wed, 14 Dec 2022 22:31:52 -0500 Subject: [PATCH] Added ImportException --- src/ncc/Abstracts/ExceptionCodes.php | 5 +++++ src/ncc/Exceptions/ImportException.php | 20 ++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 src/ncc/Exceptions/ImportException.php diff --git a/src/ncc/Abstracts/ExceptionCodes.php b/src/ncc/Abstracts/ExceptionCodes.php index 8eb6e24..4f49a69 100644 --- a/src/ncc/Abstracts/ExceptionCodes.php +++ b/src/ncc/Abstracts/ExceptionCodes.php @@ -295,6 +295,11 @@ */ const GitlabServiceException = -1756; + /** + * @see ImportException + */ + const ImportException = -1757; + /** * All the exception codes from NCC diff --git a/src/ncc/Exceptions/ImportException.php b/src/ncc/Exceptions/ImportException.php new file mode 100644 index 0000000..37defdf --- /dev/null +++ b/src/ncc/Exceptions/ImportException.php @@ -0,0 +1,20 @@ +message = $message; + } + } \ No newline at end of file