We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd7a212 commit 0134637Copy full SHA for 0134637
src/Exceptions/NotFoundException.php
@@ -2,4 +2,13 @@
2
3
namespace JustBetter\DynamicsClient\Exceptions;
4
5
-class NotFoundException extends DynamicsException {}
+use Illuminate\Http\Request;
6
+use Illuminate\Http\Response;
7
+
8
+class NotFoundException extends DynamicsException {
9
10
+ public function render(Request $request): Response
11
+ {
12
+ return response(null, 404);
13
+ }
14
+}
0 commit comments