Fixup checkstyle
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / NotLeaderException.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 akka.actor.ActorRef;
11 import com.google.common.annotations.Beta;
12 import org.opendaylight.controller.cluster.access.concepts.RequestException;
13
14 /**
15  * General error raised when the recipient of a Request is not the correct backend to talk to. This typically
16  * means that the backend processing has moved and the frontend needs to run rediscovery and retry the request.
17  *
18  * @author Robert Varga
19  */
20 @Beta
21 public final class NotLeaderException extends RequestException {
22     private static final long serialVersionUID = 1L;
23
24     public NotLeaderException(final ActorRef me) {
25         super("Actor " + me + " is not the current leader");
26     }
27
28     @Override
29     public boolean isRetriable() {
30         return false;
31     }
32 }