-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add retrying for listAlbums in GoogleMediaExporter (#1324)
* Add retrying for listALbums in GoogleMediaExporter * fix comment
- Loading branch information
1 parent
d911ff5
commit a81eaed
Showing
3 changed files
with
68 additions
and
28 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
.../java/org/datatransferproject/datatransfer/google/common/FailedToListAlbumsException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.datatransferproject.datatransfer.google.common; | ||
|
||
/** | ||
* FailedToListAlbumsException is thrown when we try to call PhotosInterface.listAlbums and are | ||
* unsuccessful. | ||
*/ | ||
public class FailedToListAlbumsException extends Exception { | ||
public FailedToListAlbumsException(String message, Exception cause) { | ||
super(message, cause); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters