We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20a7afa commit 6b36c2aCopy full SHA for 6b36c2a
1 file changed
internal/datastore/src/errors/mi-not-found-error.ts
@@ -6,7 +6,9 @@ export default class MiNotFoundError extends Error {
6
public readonly supplierId: string,
7
public readonly miId: string,
8
) {
9
- super(`Management information not found: supplierId=${supplierId}, miId=${miId}`);
+ super(
10
+ `Management information not found: supplierId=${supplierId}, miId=${miId}`,
11
+ );
12
this.name = "MiNotFoundError";
13
}
14
0 commit comments