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

}