Uses of Interface
org.opendaylight.yangtools.yang.common.RpcError
-
Packages that use RpcError Package Description org.opendaylight.yangtools.yang.common -
-
Uses of RpcError in org.opendaylight.yangtools.yang.common
Methods in org.opendaylight.yangtools.yang.common that return RpcError Modifier and Type Method Description static @NonNull RpcError
RpcResultBuilder. newError(RpcError.ErrorType errorType, String tag, String message)
Creates an RpcError with severity ERROR for reuse.static @NonNull RpcError
RpcResultBuilder. newError(RpcError.ErrorType errorType, String tag, String message, String applicationTag, String info, Throwable cause)
Creates an RpcError with severity ERROR for reuse.static @NonNull RpcError
RpcResultBuilder. newWarning(RpcError.ErrorType errorType, String tag, String message)
Creates an RpcError with severity WARNING for reuse.static @NonNull RpcError
RpcResultBuilder. newWarning(RpcError.ErrorType errorType, String tag, String message, String applicationTag, String info, Throwable cause)
Creates an RpcError with severity WARNING for reuse.Methods in org.opendaylight.yangtools.yang.common that return types with arguments of type RpcError Modifier and Type Method Description List<RpcError>
OperationFailedException. getErrorList()
Returns additional error information about this exception.@NonNull List<RpcError>
RpcResult. getErrors()
Returns a set of errors and warnings which occurred during processing the call.Methods in org.opendaylight.yangtools.yang.common with parameters of type RpcError Modifier and Type Method Description @NonNull RpcResultBuilder<T>
RpcResultBuilder. withRpcError(RpcError error)
Adds an RpcError.Method parameters in org.opendaylight.yangtools.yang.common with type arguments of type RpcError Modifier and Type Method Description RpcResultBuilder<T>
RpcResultBuilder. withRpcErrors(Collection<? extends RpcError> rpcErrors)
Adds RpcErrors.Constructors in org.opendaylight.yangtools.yang.common with parameters of type RpcError Constructor Description OperationFailedException(String message, Throwable cause, RpcError... errors)
Constructs a new instance with the specified detail message, cause and errors.OperationFailedException(String message, RpcError error)
Constructs a new instance with the specified detail message and error.OperationFailedException(String message, RpcError... errors)
Constructs a new instance with the specified detail message and errors.Constructor parameters in org.opendaylight.yangtools.yang.common with type arguments of type RpcError Constructor Description OperationFailedException(String message, Throwable cause, Collection<RpcError> errors)
Constructs a new instance with the specified detail message, cause and errors.OperationFailedException(String message, Collection<? extends RpcError> errors)
Constructs a new instance with the specified detail message and errors.
-