(message)
| 738 | |
| 739 | class NotFoundError extends Error { |
| 740 | constructor(message) { |
| 741 | super(message); |
| 742 | this.name = 'NotFoundError'; |
| 743 | this.stack = new Error().stack; |
| 744 | } |
| 745 | } |
| 746 | |
| 747 | Project.NotFoundError = NotFoundError; |
nothing calls this directly
no outgoing calls
no test coverage detected