org.distributeme.support.lifecycle.LifecycleSupportServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of distributeme-support Show documentation
Show all versions of distributeme-support Show documentation
distributeme support utilities needed by generated classes
package org.distributeme.support.lifecycle;
/**
* Base exception class for all LifecycleSupportService related exceptions.
* @author another
*
*/
public class LifecycleSupportServiceException extends Exception{
private static final long serialVersionUID = 1L;
public LifecycleSupportServiceException(String message){
super(message);
}
}