Skip to content

Commit e96a14a

Browse files
committed
handlled NoAccessException and converted into Unauthorized response
1 parent e5b4097 commit e96a14a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/RESTFul/Routing/Route.php

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use PhpPlatform\RESTFul\Package;
1313
use PhpPlatform\Annotations\Annotation;
1414
use PhpPlatform\Errors\Exceptions\Http\_4XX\Unauthorized;
15+
use PhpPlatform\Errors\Exceptions\Persistence\NoAccessException;
1516

1617
class Route {
1718

@@ -85,6 +86,8 @@ static function run($uri = null){
8586
$message = "Internal Server Error";
8687
}
8788
$httpResponse = new HTTPResponse($h->getCode(),$message);
89+
}catch (NoAccessException $e){ // NoAccessException becomes Unauthorized response
90+
$httpResponse = new HTTPResponse(401,'Unauthorized');
8891
}catch (\Exception $e){
8992
new InternalServerError($e->getMessage()); // for logging purposes
9093
$httpResponse = new HTTPResponse(500,'Internal Server Error');

0 commit comments

Comments
 (0)