| 35 | } |
| 36 | |
| 37 | export class IncorrectContractError extends SyntaxError { |
| 38 | constructor() { |
| 39 | super('The contract is incorrect. Provide the contract class compiled from your Tact or Func files'); |
| 40 | this.name = 'IncorrectContractError'; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | export class MissingContractAddressError extends SyntaxError { |
| 45 | constructor() { |
nothing calls this directly
no outgoing calls
no test coverage detected