ie.omk.smpp.UnsupportedOperationException 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;
public class UnsupportedOperationException extends SMPPRuntimeException {
static final long serialVersionUID = 2200729955220317767L;
public UnsupportedOperationException() {
}
public UnsupportedOperationException(String msg) {
super(msg);
}
}