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

public class CoefficientNotOneException extends RuntimeException {

	public CoefficientNotOneException(String msg) {
		super(msg);
	}
	
	public CoefficientNotOneException() {
		super("Coefficient is not 1.");
	}
	
}