org.codehaus.plexus.personality.plexus.lifecycle.phase.StoppingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
/*
* Copyright (c) 2005 Your Corporation. All Rights Reserved.
*/
package org.codehaus.plexus.personality.plexus.lifecycle.phase;
/**
* Error occuring while starting a component.
*
* @author Brett Porter
* @version $Id: StoppingException.java 2019 2005-05-28 18:09:59Z jvanzyl $
*/
public class StoppingException
extends Exception
{
public StoppingException( String message )
{
super( message );
}
public StoppingException( String message, Throwable cause )
{
super( message, cause );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy