@ruiapp/rapid-core 0.11.4 → 0.11.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/server.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -4986,7 +4986,7 @@ class RapidServer {
|
|
|
4986
4986
|
if (!response.status && !response.body) {
|
|
4987
4987
|
response.json({
|
|
4988
4988
|
error: {
|
|
4989
|
-
message:
|
|
4989
|
+
message: `No route handler was found to handle this request. ${rapidRequest.method} ${rapidRequest.url}`,
|
|
4990
4990
|
},
|
|
4991
4991
|
}, 404);
|
|
4992
4992
|
}
|
package/package.json
CHANGED
package/src/server.ts
CHANGED
|
@@ -472,7 +472,7 @@ export class RapidServer implements IRpdServer {
|
|
|
472
472
|
response.json(
|
|
473
473
|
{
|
|
474
474
|
error: {
|
|
475
|
-
message:
|
|
475
|
+
message: `No route handler was found to handle this request. ${rapidRequest.method} ${rapidRequest.url}`,
|
|
476
476
|
},
|
|
477
477
|
},
|
|
478
478
|
404,
|