Add cds-access-api SODIUM_SR1 version
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / RuntimeRequestException.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.access.concepts;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11 import static java.util.Objects.requireNonNull;
12
13 import com.google.common.annotations.Beta;
14 import com.google.common.base.Strings;
15
16 /**
17  * General error raised when the recipient of a {@link Request} fails to process a request.
18  *
19  * @author Robert Varga
20  */
21 @Beta
22 public final class RuntimeRequestException extends RequestException {
23     private static final long serialVersionUID = 1L;
24
25     public RuntimeRequestException(final String message, final Throwable cause) {
26         super(message, requireNonNull(cause));
27         checkArgument(!Strings.isNullOrEmpty(message), "Exception message is mandatory");
28     }
29
30     @Override
31     public boolean isRetriable() {
32         return false;
33     }
34
35     @Override
36     public Throwable unwrap() {
37         return getCause();
38     }
39 }