
br.com.anteros.ejabberd.api.RequestFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Ejabberd-Api Show documentation
Show all versions of Anteros-Ejabberd-Api Show documentation
Anteros Ejabberd API for Java.
The newest version!
package br.com.anteros.ejabberd.api;
public class RequestFailedException extends Exception {
private int code;
RequestFailedException(String message, Throwable throwable) {
super(message,throwable);
}
RequestFailedException(Throwable throwable) {
super(throwable);
}
RequestFailedException(String message) {
super(message);
}
RequestFailedException(String message, int code) {
super(message);
this.code = code;
}
public int getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy