com.pengrad.telegrambot.passport.PassportElementErrorUnspecified Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.passport;
/**
* Stas Parshin
* 28 August 2018
*/
public class PassportElementErrorUnspecified extends PassportElementError {
private final static long serialVersionUID = 0L;
private String element_hash;
public PassportElementErrorUnspecified(String type, String elementHash, String message) {
super("unspecified", type, message);
element_hash = elementHash;
}
}