package fr.sii.ogham.testing.sms.simulator;
public class SmppServerStartException extends SmppServerException {
/**
*
*/
private static final long serialVersionUID = -8223968724342714763L;
public SmppServerStartException(String message, Throwable cause) {
super(message, cause);
}
public SmppServerStartException(String message) {
super(message);
}
public SmppServerStartException(Throwable cause) {
super(cause);
}
}