class ConfigurationErrors
(source)
Factory methods for collections of ConfigurationError.
static fun noErrors(): MutableList<ConfigurationError> |
|
static fun singleError(message: String): MutableList<ConfigurationError> static fun singleError(message: String, cause: Throwable?): MutableList<ConfigurationError> static fun singleError(position: DocumentPosition?, message: String): MutableList<ConfigurationError> static fun singleError(position: DocumentPosition?, message: String, cause: Throwable?): MutableList<ConfigurationError>
Create a single error. |