Newer
Older
ResourceDependencyLogic / src / exceptions / CoefficientNotOneException.java
@Sakoda2269 Sakoda2269 on 19 Oct 237 bytes テストを追加
package exceptions;

public class CoefficientNotOneException extends RuntimeException {

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