summaryrefslogtreecommitdiffstats
path: root/vespaclient-java/src/main/java/com/yahoo/vespastat/BucketStatsException.java
blob: 0edecae7ddbe0dbdb1753708d5a8909231292291 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespastat;

/**
 * Exception class used by {@link com.yahoo.vespastat.BucketStatsRetriever}.
 *
 * @author bjorncs
 */
public class BucketStatsException extends Exception {
    public BucketStatsException(String message) {
        super(message);
    }

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

}