8 lines
244 B
Java
8 lines
244 B
Java
|
//: com/mindviewinc/util/OSExecuteException.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
package com.mindviewinc.util;
|
|||
|
|
|||
|
public class OSExecuteException extends RuntimeException {
|
|||
|
public OSExecuteException(String why) { super(why); }
|
|||
|
} ///:~
|