OnJava8-Examples/net/mindview/util/OSExecuteException.java
2015-05-29 14:18:51 -07:00

8 lines
238 B
Java

//: net/mindview/util/OSExecuteException.java
// ©2015 MindView LLC: see Copyright.txt
package net.mindview.util;
public class OSExecuteException extends RuntimeException {
public OSExecuteException(String why) { super(why); }
} ///:~