All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.crsn.maven.utils.osgirepo.osgi.IsNotBundleException Maven / Gradle / Ivy

Go to download

The kar-packager is a small Maven Plugin to create Apache Karaf Archives (.kar) from a given folder. Everything the folder needs to contain are the bundles to make up the archive.

The newest version!
package com.crsn.maven.utils.osgirepo.osgi;

public class IsNotBundleException extends Exception {

  private static final long serialVersionUID = 1L;

  public IsNotBundleException() {
    super();
  }

  public IsNotBundleException( String message, Throwable nested ) {
    super( message, nested );
  }

  public IsNotBundleException( String message ) {
    super( message );
  }

  public IsNotBundleException( Throwable nested ) {
    super( nested );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy