org.telegram.mtproto.ServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
package org.telegram.mtproto;
import java.io.IOException;
/**
* Created with IntelliJ IDEA.
* User: Ruben Bermudez
* Date: 03.11.13
* Time: 6:47
*/
public class ServerException extends IOException {
public ServerException() {
}
public ServerException(String s) {
super(s);
}
public ServerException(String s, Throwable throwable) {
super(s, throwable);
}
public ServerException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy