Eliminate SE_BAD_FIELD suppressions
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / OutOfOrderRequestException.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 whose sequence does not match the
14  * next expected sequence for the target. This is a hard error, as it indicates a Request is missing in the stream.
15  */
16 public final class OutOfOrderRequestException extends RequestException {
17     @java.io.Serial
18     private static final long serialVersionUID = 1L;
19
20     public OutOfOrderRequestException(final long expectedRequest) {
21         super("Expecting request " + Long.toUnsignedString(expectedRequest));
22     }
23
24     @Override
25     public boolean isRetriable() {
26         return false;
27     }
28 }