package exceptions;

public class NonLinearExpressionException extends RuntimeException {
	
	public NonLinearExpressionException() {
		super("This Expression is not linear");
	}
	
	public NonLinearExpressionException(String msg) {
		super(msg);
	}
	
}
