Have the same error message for file not found
This commit is contained in:
parent
a57ed5c4ae
commit
51baa4d8e0
2 changed files with 8 additions and 3 deletions
|
|
@ -1,5 +1,8 @@
|
|||
export class FileNotFoundError extends Error {
|
||||
public constructor(message: string) {
|
||||
public constructor(
|
||||
message: string,
|
||||
public readonly filePath: string
|
||||
) {
|
||||
super(message);
|
||||
this.name = "FileNotFoundError";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue