aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-java/src/main/java/com/yahoo/vespastat/BucketStatsException.java
blob: ed21ab3516895364e75b887606634bf253d773f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Vespa.ai. 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);
    }

}