Uses of Interface
com.suse.salt.netapi.errors.SaltError
-
Packages that use SaltError Package Description com.suse.salt.netapi.errors com.suse.salt.netapi.results com.suse.salt.netapi.utils -
-
Uses of SaltError in com.suse.salt.netapi.errors
Classes in com.suse.salt.netapi.errors that implement SaltError Modifier and Type Class Description class
FunctionNotAvailable
Salt error when trying to execute a function that does not existclass
GenericError
Catch all error that contains only a error messages.class
JsonParsingError
Json parsing error that contains the rest of the json which could not be parsed.class
ModuleNotSupported
Error that happens if a modules is not supported -
Uses of SaltError in com.suse.salt.netapi.results
Methods in com.suse.salt.netapi.results that return types with arguments of type SaltError Modifier and Type Method Description Optional<SaltError>
Result. error()
Xor<SaltError,R>
Result. toXor()
Methods in com.suse.salt.netapi.results with parameters of type SaltError Modifier and Type Method Description static <T> Result<T>
Result. error(SaltError e)
Method parameters in com.suse.salt.netapi.results with type arguments of type SaltError Modifier and Type Method Description void
Result. consume(Consumer<? super SaltError> consumerError, Consumer<? super R> consumerResult)
<T> T
Result. fold(Function<? super SaltError,? extends T> mapError, Function<? super R,? extends T> mapResult)
Constructor parameters in com.suse.salt.netapi.results with type arguments of type SaltError Constructor Description Result(Xor<SaltError,R> xor)
-
Uses of SaltError in com.suse.salt.netapi.utils
Methods in com.suse.salt.netapi.utils that return types with arguments of type SaltError Modifier and Type Method Description static Optional<SaltError>
SaltErrorUtils. deriveError(String saltOutput)
Based on the salt text output, derive particularSaltError
.
-