Package net.sourceforge.justin.core.exceptions

Examples of net.sourceforge.justin.core.exceptions.MalformedManifestJar


        this.jarURL = jarURL;
        this.name = attributes.getValue(PLUGIN_NAME);
        this.pluginClassName = attributes.getValue(PLUGIN_CLASS);

        if (name == null || pluginClassName == null) {
            throw new MalformedManifestJar("Missing inforrmations in Manifest");
        }

        LOGGER.debug("Plug-in {} created", name);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.justin.core.exceptions.MalformedManifestJar

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.