BUG-8371: raise unknown history log to warn
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / DeadHistoryException.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.commands;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.collect.RangeSet;
12 import com.google.common.primitives.UnsignedLong;
13 import org.opendaylight.controller.cluster.access.concepts.RequestException;
14
15 /**
16  * A {@link RequestException} indicating that the backend has received a request to create a history which has already
17  * been retired.
18  *
19  * @author Robert Varga
20  */
21 @Beta
22 public final class DeadHistoryException extends RequestException {
23     private static final long serialVersionUID = 1L;
24
25     public DeadHistoryException(final RangeSet<UnsignedLong> purgedHistories) {
26         super("Histories " + purgedHistories + " have been purged");
27     }
28
29     @Override
30     public boolean isRetriable() {
31         return false;
32     }
33 }