Skip to content

Commit

Permalink
Expose the constructors of IOException wrappers that hold AuthExcepti…
Browse files Browse the repository at this point in the history
…ons.

-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=95466021
  • Loading branch information
eheilm authored and ejona86 committed Jul 31, 2015
1 parent fa5b378 commit 9f83c1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class GoogleAuthIOException extends IOException {
/**
* @param wrapped wrapped {@link GoogleAuthException}
*/
GoogleAuthIOException(GoogleAuthException wrapped) {
public GoogleAuthIOException(GoogleAuthException wrapped) {
initCause(Preconditions.checkNotNull(wrapped));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public class GooglePlayServicesAvailabilityIOException extends UserRecoverableAu

private static final long serialVersionUID = 1L;

GooglePlayServicesAvailabilityIOException(GooglePlayServicesAvailabilityException wrapped) {
public GooglePlayServicesAvailabilityIOException(
GooglePlayServicesAvailabilityException wrapped) {
super(wrapped);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class UserRecoverableAuthIOException extends GoogleAuthIOException {

private static final long serialVersionUID = 1L;

UserRecoverableAuthIOException(UserRecoverableAuthException wrapped) {
public UserRecoverableAuthIOException(UserRecoverableAuthException wrapped) {
super(wrapped);
}

Expand Down

0 comments on commit 9f83c1b

Please sign in to comment.