Package fr.igred.omero.exception
Interface ExceptionHandler.OMEROFunction<T,R>
-
- Type Parameters:
T
- The input type.R
- The output type.
- All Superinterfaces:
ExceptionHandler.ThrowingFunction<T,R,Exception>
- Enclosing class:
- ExceptionHandler<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface ExceptionHandler.OMEROFunction<T,R> extends ExceptionHandler.ThrowingFunction<T,R,Exception>
Interface for a function that can throw OMERO exceptions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(T t)
-
-
-
Method Detail
-
apply
R apply(T t) throws DSOutOfServiceException, DSAccessException, ServerError
- Specified by:
apply
in interfaceExceptionHandler.ThrowingFunction<T,R,Exception>
- Throws:
DSOutOfServiceException
DSAccessException
ServerError
-
-