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

org.telegram.tl.DeserializeException Maven / Gradle / Ivy

The newest version!
package org.telegram.tl;

import java.io.IOException;

/**
 * Exception while deserizalization
 *
 * @author Stepan Ex3NDR Korshakov ([email protected])
 */
public class DeserializeException extends IOException {
    public DeserializeException() {
    }

    public DeserializeException(String s) {
        super(s);
    }

    public DeserializeException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public DeserializeException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy