(errorType, errorData)
| 25 | * being created. See showErrors(). |
| 26 | */ |
| 27 | addError(errorType, errorData) { |
| 28 | this.errors.push(new ErrorEntry(errorType, errorData)); |
| 29 | } |
| 30 | |
| 31 | getErrors() { |
| 32 | return this.errors; |
no outgoing calls
no test coverage detected