7 lines
197 B
Java
7 lines
197 B
Java
//: net/mindview/util/OSExecuteException.java
|
|
package net.mindview.util;
|
|
|
|
public class OSExecuteException extends RuntimeException {
|
|
public OSExecuteException(String why) { super(why); }
|
|
} ///:~
|