aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/exception/ActivationConflictException.java
blob: 8111d4fb06b63bdfbcf10b09085904fdbaebc73c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision.exception;

/**
 * Exception used when activation cannot be done because activation is for
 * an older session than the one that is active now or because current active
 * session has changed since the session to be activated was created
 *
 * @author hmusum
 */
public class ActivationConflictException extends RuntimeException {

    public ActivationConflictException(String message) { super(message); }

    public ActivationConflictException(String message, Throwable cause) { super(message, cause); }

}