ie.omk.smpp.util.PropertyNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smppapi Show documentation
Show all versions of smppapi Show documentation
Java Implementation of the Short Message Peer to Peer API.
The newest version!
package ie.omk.smpp.util;
public class PropertyNotFoundException extends ie.omk.smpp.SMPPRuntimeException {
static final long serialVersionUID = -3513175897407921550L;
private String property = "";
public PropertyNotFoundException() {
}
public PropertyNotFoundException(String property) {
super();
this.property = property;
}
public String getProperty() {
return property;
}
}