package exceptions;

public class SubstituteFailedException extends RuntimeException {
	
	public SubstituteFailedException(String msg) {
		super(msg);
	}
	
	public SubstituteFailedException() {
		super("substitute failed");
	}
	
}
