All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.telegram.mtproto.ServerException Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
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