com.google.api.client.googleapis.extensions.android.gms.auth.UserRecoverableAuthIOException.java Source code

Java tutorial

Introduction

Here is the source code for com.google.api.client.googleapis.extensions.android.gms.auth.UserRecoverableAuthIOException.java

Source

/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */

package com.google.api.client.googleapis.extensions.android.gms.auth;

import android.app.Activity;
import android.content.Intent;
import com.google.android.gms.auth.UserRecoverableAuthException;
import com.google.api.client.util.Beta;
import java.io.IOException;

/**
 * {@link Beta} <br/>
 * Wraps a {@link UserRecoverableAuthException} into an {@link IOException} so it can be caught
 * directly.
 *
 * <p>
 * Use {@link #getIntent()} to allow user interaction to recover. Alternatively, use
 * {@link #getCause()} to get the wrapped {@link UserRecoverableAuthException}. Example usage:
 * </p>
 *
 * <pre>
} catch (UserRecoverableAuthIOException userRecoverableException) {
  myActivity.startActivityForResult(
      userRecoverableException.getIntent(), MyActivity.REQUEST_AUTHORIZATION);
}
 * </pre>
 *
 * @since 1.12
 * @author Yaniv Inbar
 */
@Beta
public class UserRecoverableAuthIOException extends GoogleAuthIOException {

    private static final long serialVersionUID = 1L;

    /**
     * @since 1.21.0
     */
    public UserRecoverableAuthIOException(UserRecoverableAuthException wrapped) {
        super(wrapped);
    }

    @Override
    public UserRecoverableAuthException getCause() {
        return (UserRecoverableAuthException) super.getCause();
    }

    /**
     * Returns the {@link Intent} that when supplied to
     * {@link Activity#startActivityForResult(Intent, int)} will allow user intervention.
     */
    public final Intent getIntent() {
        return getCause().getIntent();
    }
}