pg-mvc-service 2.0.40 → 2.0.41
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/index.d.ts +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -143,6 +143,12 @@ declare module 'pg-mvc-service' {
|
|
|
143
143
|
constructor(errorId: string, message?: string);
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
+
export class NotFoundException extends Error {
|
|
147
|
+
private errorId: string;
|
|
148
|
+
get ErrorId(): string;
|
|
149
|
+
constructor(errorId: string, message?: string);
|
|
150
|
+
}
|
|
151
|
+
|
|
146
152
|
export class UnprocessableException extends Error {
|
|
147
153
|
private errorId: string;
|
|
148
154
|
get ErrorId(): string;
|