-
-
Notifications
You must be signed in to change notification settings - Fork 576
Open
Description
When using the patcher feature, it would be nice to know which token has not been found to help us troubleshoot the issue.
Could be done by changing:
throw new Error("Token not found");into
throw new Error(`Token ${token} not found`)or
class TokenNotFoundError extends Error {
constructor(message: string) {
super(message);
this.name = "TokenNotFoundError ";
}
}
throw new TokenNotFoundError (`Token ${token} not found`)TeoAvignon-Balyo
Metadata
Metadata
Assignees
Labels
No labels