Skip to content

Commit

Permalink
Simplify "not implemented" exception messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed Aug 17, 2023
1 parent 4ceb7d7 commit cbaa073
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/geolocation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ export class Geolocation {

/* istanbul ignore next */
watchPosition(): number {
throw new Error("Method not implemented.");
throw new Error("Not implemented");
}

/* istanbul ignore next */
clearWatch(): void {
throw new Error("Method not implemented clearWatch");
throw new Error("Not implemented");
}

/**
Expand Down

0 comments on commit cbaa073

Please sign in to comment.