OnJava8-Examples/net/mindview/util/OSExecuteException.java

7 lines
197 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: net/mindview/util/OSExecuteException.java
package net.mindview.util;
public class OSExecuteException extends RuntimeException {
public OSExecuteException(String why) { super(why); }
} ///:~