//: 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); } } ///:~