package org.bundlebee.carrier; import org.osgi.framework.BundleException; /** * DeploymentException. * * @author Hendrik Schreiber */ public class DeploymentException extends BundleException { static final long serialVersionUID = 42L; public DeploymentException(final String message) { super(message); } }