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

com.pengrad.telegrambot.passport.PassportElementError Maven / Gradle / Ivy

There is a newer version: 7.9.1
Show newest version
package com.pengrad.telegrambot.passport;

import java.io.Serializable;

/**
 * Stas Parshin
 * 30 July 2018
 */
public abstract class PassportElementError implements Serializable {
    private final static long serialVersionUID = 0L;

    private final String source;
    private final String type;
    private final String message;

    public PassportElementError(String source, String type, String message) {
        this.source = source;
        this.type = type;
        this.message = message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy