a52396fd5d5f6a00ab78085bd457f8aca3a3246d
[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 com.google.common.annotations.Beta;
11 import com.google.common.base.Preconditions;
12 import com.google.common.base.Strings;
13
14 /**
15  * General error raised when the recipient of a {@link Request} fails to process a request.
16  *
17  * @author Robert Varga
18  */
19 @Beta
20 public final class RuntimeRequestException extends RequestException {
21     private static final long serialVersionUID = 1L;
22
23     public RuntimeRequestException(final String message, final Throwable cause) {
24         super(message, Preconditions.checkNotNull(cause));
25         Preconditions.checkArgument(!Strings.isNullOrEmpty(message), "Exception message is mandatory");
26     }
27
28     @Override
29     public boolean isRetriable() {
30         return false;
31     }
32
33     @Override
34     public Throwable unwrap() {
35         return getCause();
36     }
37 }