Newer
Older
RDLProofSystem / src / main / java / exceptions / NonLinearExpressionException.java
@Sakoda2269 Sakoda2269 on 18 May 252 bytes ディレクトリ構造変更
package exceptions;

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