()
| 435 | } |
| 436 | |
| 437 | close() { |
| 438 | this.step.resolve( |
| 439 | this.stepErrorDone( |
| 440 | "Action cancelled", |
| 441 | "Action has been cancelled without reach any success" |
| 442 | ) |
| 443 | ); |
| 444 | } |
| 445 | |
| 446 | stepErrorDone(title, message) { |
| 447 | return command.done(false, null, title, message); |
nothing calls this directly
no test coverage detected