blob: 9634f1854a23ebde9870b20245cc3f37c9e8f31a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Gregoire DUPE (Mia-Software) - initial API and implementation
*******************************************************************************/
package org.eclipse.gmt.modisco.infra.query.core.exception;
public class MissingBundleException extends ModelQueryException {
private static final long serialVersionUID = -8404816241040395882L;
private final String bundleName;
public String getBundleName() {
return this.bundleName;
}
public MissingBundleException(final String bundleName) {
super("The bundle " + bundleName //$NON-NLS-1$
+ " is missing. The bundle has to be installed, it will not be hot loaded."); //$NON-NLS-1$
this.bundleName = bundleName;
}
}