2015-09-07 11:44:36 -06:00
|
|
|
// com/mindviewinc/util/OSExecuteException.java
|
2015-06-15 17:47:35 -07:00
|
|
|
package com.mindviewinc.util;
|
|
|
|
|
|
|
|
public class OSExecuteException extends RuntimeException {
|
|
|
|
public OSExecuteException(String why) { super(why); }
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|