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

/**
 *
 * Exception thrown when we are unable to fulfill the request due to
 * having too few nodes (of the specified flavor)
 * 
 * @author hmusum
 *
 */
public class OutOfCapacityException extends RuntimeException {

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

}