Class | Line # | Actions | |||||
---|---|---|---|---|---|---|---|
TimeOutException | 6 | 1 | 0% | 2 | 0 |
1 | package org.europa.together.exceptions; | |
2 | ||
3 | /** | |
4 | * Exception for several Timeouts. | |
5 | */ | |
6 | public class TimeOutException extends Exception { | |
7 | ||
8 | private static final long serialVersionUID = 1L; | |
9 | ||
10 | /** | |
11 | * Creates a new instance of <code>TimeOutException</code> without detail | |
12 | * message. | |
13 | */ | |
14 | 1 | public TimeOutException() { |
15 | /* NOT IN USE. */ | |
16 | } | |
17 | ||
18 | /** | |
19 | * Constructs an instance of <code>TimeOutException</code> with the | |
20 | * specified detail message. | |
21 | * | |
22 | * @param msg the detail message. | |
23 | */ | |
24 | 1 | public TimeOutException(final String msg) { |
25 | 1 | super(msg); |
26 | } | |
27 | } |