All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ie.omk.smpp.util.PropertyNotFoundException Maven / Gradle / Ivy

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;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy