Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / UnknownHistoryException.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 org.opendaylight.controller.cluster.access.concepts.RequestException;
11
12 /**
13  * A {@link RequestException} indicating that the backend has received a request referencing an unknown history. This
14  * typically happens when the linear history ID is newer than the highest observed {@link CreateLocalHistoryRequest}.
15  */
16 public final class UnknownHistoryException extends RequestException {
17     @java.io.Serial
18     private static final long serialVersionUID = 1L;
19
20     public UnknownHistoryException(final Long lastSeenHistory) {
21         super("Last known history is " + historyToString(lastSeenHistory));
22     }
23
24     private static String historyToString(final Long history) {
25         return history == null ? "null" : Long.toUnsignedString(history);
26     }
27
28     @Override
29     public boolean isRetriable() {
30         return true;
31     }
32 }