We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5b4097 commit e96a14aCopy full SHA for e96a14a
src/RESTFul/Routing/Route.php
@@ -12,6 +12,7 @@
12
use PhpPlatform\RESTFul\Package;
13
use PhpPlatform\Annotations\Annotation;
14
use PhpPlatform\Errors\Exceptions\Http\_4XX\Unauthorized;
15
+use PhpPlatform\Errors\Exceptions\Persistence\NoAccessException;
16
17
class Route {
18
@@ -85,6 +86,8 @@ static function run($uri = null){
85
86
$message = "Internal Server Error";
87
}
88
$httpResponse = new HTTPResponse($h->getCode(),$message);
89
+ }catch (NoAccessException $e){ // NoAccessException becomes Unauthorized response
90
+ $httpResponse = new HTTPResponse(401,'Unauthorized');
91
}catch (\Exception $e){
92
new InternalServerError($e->getMessage()); // for logging purposes
93
$httpResponse = new HTTPResponse(500,'Internal Server Error');
0 commit comments