summaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/config/subscription/ConfigInterruptedException.java
blob: ed1dca50096c87b5e9f8007c9da13e1f48b23e48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.subscription;

/**
 * This exception is thrown when any blocking call within the Config API is interrupted.
 * @author lulf
 * @since 5.1
 */
@SuppressWarnings("serial")
public class ConfigInterruptedException extends RuntimeException {
    public ConfigInterruptedException(Throwable cause) {
        super(cause);
    }
}