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

org.codehaus.plexus.component.composition.CompositionException Maven / Gradle / Ivy

There is a newer version: 5.17.0
Show newest version
package org.codehaus.plexus.component.composition;

/**
 *
 *
 * @author Jason van Zyl
 * @author Michal Maczka
 *
 * @version $Id: CompositionException.java 1323 2004-12-20 23:00:59Z jvanzyl $
 */
public class CompositionException
    extends Exception
{
    
    /**
     * Construct a new CompositionException instance.
     *
     * @param message The detail message for this exception.
     */
    public CompositionException( String s )
    {
        super( s );
    }
    
    /**
     * Construct a new CompositionException instance.
     *
     * @param message The detail message for this exception.
     * @param throwable the root cause of the exception
     */
    public CompositionException( final String message, final Throwable throwable )
    {
        super( message, throwable );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy