com.pengrad.telegrambot.passport.PassportElementErrorTranslationFiles 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 PassportElementErrorTranslationFiles extends PassportElementError {
private final static long serialVersionUID = 0L;
private String[] file_hashes;
public PassportElementErrorTranslationFiles(String type, String[] fileHashes, String message) {
super("translation_files", type, message);
file_hashes = fileHashes;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy