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 JVM version information.
08: */
09: public final class UnknownJvmVersionException extends Exception {
10: UnknownJvmVersionException(final String badVersion) {
11: super ("Unable to parse JVM version '" + badVersion + "'");
12: }
13: }
|