org.telegram.mtproto.TransportSecurityException 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:44
*/
public class TransportSecurityException extends IOException {
public TransportSecurityException() {
}
public TransportSecurityException(String s) {
super(s);
}
public TransportSecurityException(String s, Throwable throwable) {
super(s, throwable);
}
public TransportSecurityException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy