
org.telegram.tl.DeserializeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tl-core Show documentation
Show all versions of tl-core Show documentation
Telegram TL library for TL serialization
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