ru.dezhik.sms.sender.RequestValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sms-sender Show documentation
Show all versions of sms-sender Show documentation
Library for sending SMS via sms.ru gateway
package ru.dezhik.sms.sender;
/**
* @author ilya.dezhin
*/
public class RequestValidationException extends RuntimeException {
public RequestValidationException(String message) {
super(message);
}
public RequestValidationException(String message, Throwable cause) {
super(message, cause);
}
}