Skip to content

Commit 4d3f283

Browse files
Update packages/core/errors/exceptions/unknown-request-mapping.exception.ts
1 parent 2fe543d commit 4d3f283

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/errors/exceptions/unknown-request-mapping.exception.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { RuntimeException } from './runtime.exception';
33
import { UNKNOWN_REQUEST_MAPPING } from '../messages';
44

55
export class UnknownRequestMappingException extends RuntimeException {
6-
constructor(metatypeWrongPlaced: Type) {
7-
super(UNKNOWN_REQUEST_MAPPING(metatypeWrongPlaced));
6+
constructor(metatype: Type) {
7+
super(UNKNOWN_REQUEST_MAPPING(metatype));
88
}
99
}

0 commit comments

Comments
 (0)