com.fastchar.sms.exception.FastSMSException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-sms Show documentation
Show all versions of fastchar-sms Show documentation
FastChar-SMS is a FastChar plugin.
package com.fastchar.sms.exception;
public class FastSMSException extends RuntimeException {
private static final long serialVersionUID = -7295130877515204380L;
public FastSMSException() {
super();
}
public FastSMSException(String message) {
super(message);
}
public FastSMSException(String message, Throwable cause) {
super(message, cause);
}
public FastSMSException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy