Newer
Older
ResourceDependencyLogic / src / exceptions / SubstituteFailedException.java
@Sakoda2269 Sakoda2269 on 20 Dec 231 bytes 途中まで
package exceptions;

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