tdlight-java/src/main/java/it/tdlight/client/AuthenticationDataQrCode.java

25 lines
435 B
Java
Raw Normal View History

2021-09-27 22:15:17 +02:00
package it.tdlight.client;
class AuthenticationDataQrCode implements AuthenticationData {
@Override
public boolean isQrCode() {
return true;
}
@Override
public boolean isBot() {
return false;
}
@Override
public long getUserPhoneNumber() {
throw new UnsupportedOperationException("This is not a user");
}
@Override
public String getBotToken() {
throw new UnsupportedOperationException("This is not a bot");
}
}