TwoStepAuthException.java 339 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package chat.rocket.android.api;

public class TwoStepAuthException extends Exception {

  public static final String TYPE = "totp-required";

  private static final long serialVersionUID = 7063596902054234189L;

  public TwoStepAuthException() {
    super();
  }

  public TwoStepAuthException(String message) {
    super(message);
  }
}