package de.tla2b.exceptions;


@SuppressWarnings("serial")
public class NotImplementedException extends RuntimeException {
	public NotImplementedException(String e){
		super(e);
	}

}