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.bundles.exception;
05:
06: import org.osgi.framework.BundleException;
07:
08: public class InvalidBundleManifestException extends BundleException {
09:
10: public InvalidBundleManifestException(final String msg) {
11: super (msg);
12: }
13:
14: public InvalidBundleManifestException(final String msg,
15: final Throwable cause) {
16: super(msg, cause);
17: }
18:
19: }
|