Package com.suse.salt.netapi.errors
Interface SaltError
-
- All Known Implementing Classes:
FunctionNotAvailable
,GenericError
,JsonParsingError
,ModuleNotSupported
public interface SaltError
Interface for all salt related errors
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
fold(Function<FunctionNotAvailable,? extends T> fnNotAvail, Function<ModuleNotSupported,? extends T> modNotSupported, Function<JsonParsingError,? extends T> jsonError, Function<GenericError,? extends T> generic)
-
-
-
Method Detail
-
fold
<T> T fold(Function<FunctionNotAvailable,? extends T> fnNotAvail, Function<ModuleNotSupported,? extends T> modNotSupported, Function<JsonParsingError,? extends T> jsonError, Function<GenericError,? extends T> generic)
-
-