@punks/backend-entity-manager 0.0.69 → 0.0.70
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/cjs/index.js +3 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +4 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -20403,6 +20403,9 @@ class NestTypeOrmEntitySeeder extends TypeOrmEntitySeeder {
|
|
|
20403
20403
|
|
|
20404
20404
|
class AppExceptionsFilterBase {
|
|
20405
20405
|
catch(exception, host) {
|
|
20406
|
+
if (exception instanceof common.HttpException) {
|
|
20407
|
+
return;
|
|
20408
|
+
}
|
|
20406
20409
|
const ctx = host.switchToHttp();
|
|
20407
20410
|
const response = ctx.getResponse();
|
|
20408
20411
|
const request = ctx.getRequest();
|