* @description * Reports error data for the control with the given path. * * @param errorCode The code of the error to check * @param path A list of control names that designates how to move from the current control * to the control that should be queried for errors. * * @usageN
(errorCode: string, path?: Array<string | number> | string)
| 329 | * null is returned. |
| 330 | */ |
| 331 | getError(errorCode: string, path?: Array<string | number> | string): any { |
| 332 | return this.control ? this.control.getError(errorCode, path) : null; |
| 333 | } |
| 334 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…