Returns a ConfigOrError for the failure to convert the data object.
(String errorDetail)
| 33 | * Returns a {@link ConfigOrError} for the failure to convert the data object. |
| 34 | */ |
| 35 | static <T> ConfigOrError<T> fromError(String errorDetail) { |
| 36 | return new ConfigOrError<>(errorDetail); |
| 37 | } |
| 38 | |
| 39 | final String errorDetail; |
| 40 | final T config; |
no outgoing calls
no test coverage detected