View Javadoc

1   package test.crispy.compatibility;
2   
3   /**
4    * Is thrown, if is a problem with the compatibility.
5    * 
6    * @author Linke
7    *
8    */
9   public class CompatibilityException extends RuntimeException {
10  
11  	private static final long serialVersionUID = 5235235L;
12  
13  	public CompatibilityException(String pvMsg) {
14  		super(pvMsg);
15  	}
16  }