01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.util.runtime;
05:
06: /**
07: * Thrown when unable to parse the runtime version information.
08: */
09: public final class UnknownRuntimeVersionException extends Exception {
10: UnknownRuntimeVersionException(final String jvmVersion,
11: final String badVersion) {
12: super ("Unable to parse runtime version '" + badVersion
13: + "' for JVM version '" + jvmVersion + "'");
14: }
15: }
|