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

org.whispersystems.signalservice.api.TokenException Maven / Gradle / Ivy

There is a newer version: 2.15.3_unofficial_107
Show newest version
package org.whispersystems.signalservice.api;

import org.whispersystems.signalservice.internal.contacts.entities.TokenResponse;

class TokenException extends Exception {

  private final TokenResponse nextToken;
  private final boolean       canAutomaticallyRetry;

  TokenException(TokenResponse nextToken, boolean canAutomaticallyRetry) {
    this.nextToken             = nextToken;
    this.canAutomaticallyRetry = canAutomaticallyRetry;
  }

  public TokenResponse getToken() {
    return nextToken;
  }

  public boolean isCanAutomaticallyRetry() {
    return canAutomaticallyRetry;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy