(args)
| 731 | } |
| 732 | |
| 733 | requestFallback(args) { |
| 734 | if (!this.onRequestFallback) { |
| 735 | throw new Error(`"onRequestFallback" not defined on ${ this.constructor.name }`); |
| 736 | } |
| 737 | this.fallbackRequested = true; |
| 738 | return this.onRequestFallback(args); |
| 739 | } |
| 740 | |
| 741 | /** |
| 742 | * @desc Validate settings |
no test coverage detected