aboutsummaryrefslogtreecommitdiff
path: root/compatibility/IncompatibleCbtVersionException.java
blob: dee50fb8379fa10467f749e73d4d29515a616785 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package cbt;

public class IncompatibleCbtVersionException extends RuntimeException{
	public IncompatibleCbtVersionException( String msg, Throwable parent ){
		super( msg, parent );
	}
	public IncompatibleCbtVersionException( String msg ){
		super( msg );
	}
}