View Javadoc

1   package de.campussource.cse.common.test;
2   
3   /**
4    * Generell exception if something went wrong during injection.
5    *  
6    * @author Ingo Dueppe
7    *
8    */
9   public class AnnotationInjectionException extends RuntimeException {
10  	private static final long serialVersionUID = 7995450539390210857L;
11  
12  	public AnnotationInjectionException() {
13  		super();
14  	}
15  
16  	public AnnotationInjectionException(String message, Throwable cause) {
17  		super(message, cause);
18  	}
19  
20  	public AnnotationInjectionException(String message) {
21  		super(message);
22  	}
23  
24  	public AnnotationInjectionException(Throwable message) {
25  		super(message);
26  	}
27  
28  	
29  	public AnnotationInjectionException(Object target, Throwable cause) {
30  		super(target.getClass().getCanonicalName(),cause);
31  	}
32  
33  }