01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.tools;
05:
06: public class UnsupportedVMException extends BootJarException {
07:
08: public UnsupportedVMException(final String message) {
09: super (message);
10: }
11:
12: public UnsupportedVMException(final String message,
13: final Throwable cause) {
14: super(message, cause);
15: }
16:
17: }
|