* Creates an error object. * @param {...*} var_args * @return {!Error}
(var_args)
| 292 | * @return {!Error} |
| 293 | */ |
| 294 | createError(var_args) { |
| 295 | return this.setErrorSuffix_(createError.apply(null, arguments)); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Creates an error object with its expected property set to true. |
no test coverage detected