summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/concurrent/TimeoutException.java
blob: cd2cfacf90231c480d374698052267da3d7e490f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yahoo.vespa.hosted.controller.concurrent;

/**
 * Throws on timeout
 * 
 * @author bratseth
 */
public class TimeoutException extends RuntimeException {
    
    public TimeoutException(String message) {
        super(message);
    }
    
}