Project

General

Profile

1
package eu.dnetlib.iis.export.actionmanager.module;
2

    
3
/**
4
 * Exception raised when no actionset mapping was defined for given algorithm.
5
 * @author mhorst
6
 *
7
 */
8
public class ActionSetMappingNotDefinedException extends RuntimeException {
9

    
10
	/**
11
	 * 
12
	 */
13
	private static final long serialVersionUID = 8868977210154868434L;
14

    
15
	
16
	public ActionSetMappingNotDefinedException() {
17
		super();
18
	}
19

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

    
24
}
(6-6/22)