aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/time/UncheckedTimeoutException.java
blob: 3b53ffbdcf6c446ede10c8824be9526c34ef6c8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.time;

/**
 * Exception thrown when a blocking operation times out.
 *
 * <p>Mirrors {@link java.util.concurrent.TimeoutException}
 *
 * @author hakon
 */
@SuppressWarnings("serial")
public class UncheckedTimeoutException extends RuntimeException {
    public UncheckedTimeoutException() { }

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