ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/java/PlatformTools/src/net/oni2/platformtools/applicationinvoker/ERuntimeNotInstalledException.java
Revision: 724
Committed: Thu Mar 21 11:43:42 2013 UTC (12 years, 7 months ago) by alloc
Content type: text/x-java
File size: 336 byte(s)
Log Message:
Platform tools library (information about platform, program execution)

File Contents

# Content
1 package net.oni2.platformtools.applicationinvoker;
2
3 /**
4 * @author Christian Illy
5 */
6 public class ERuntimeNotInstalledException extends Exception {
7 /**
8 * @param msg
9 * Cause
10 */
11 public ERuntimeNotInstalledException(String msg) {
12 super(msg);
13 }
14
15 private static final long serialVersionUID = -7304001610863429671L;
16 }