1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00

fix: error in initialising the Exception constructor in api.php

This commit is contained in:
Christy Jacob 2023-08-01 18:18:27 +05:30 committed by GitHub
parent 887abad190
commit 3b4255c457
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ $parseLabel = function (string $label, array $responsePayload, array $requestPar
$parts = explode('.', $match);
if (count($parts) !== 2) {
throw new Exception('Too less or too many parts', 400, Exception::GENERAL_ARGUMENT_INVALID);
throw new Exception(Exception::GENERAL_SERVER_ERROR, "The server encountered an error while parsing the label: $label");
}
$namespace = $parts[0] ?? '';