Project

General

Profile

1
package eu.dnetlib.services.async;
2

    
3
import eu.dnetlib.exceptions.DnetGenericException;
4

    
5
public class AsyncMethodException extends DnetGenericException {
6

    
7
	/**
8
	 *
9
	 */
10
	private static final long serialVersionUID = 4505152782783864469L;
11

    
12
	public AsyncMethodException() {
13
		super();
14
	}
15

    
16
	public AsyncMethodException(final String message, final Throwable cause) {
17
		super(message, cause);
18
	}
19

    
20
	public AsyncMethodException(final String message) {
21
		super(message);
22
	}
23

    
24
	public AsyncMethodException(final Throwable cause) {
25
		super(cause);
26
	}
27

    
28
}
(3-3/8)