org.distributeme.agents.transporter.TransporterServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of distributeme-agents Show documentation
Show all versions of distributeme-agents Show documentation
Support for mobile agents in DistributeMe.
package org.distributeme.agents.transporter;
public class TransporterServiceException extends Exception{
/**
*
*/
private static final long serialVersionUID = 1L;
public TransporterServiceException(String message){
super(message);
}
public TransporterServiceException(String message, Exception cause){
super(message, cause);
}
}