Skip to content

Commit a66b7a1

Browse files
committed
---
yaml --- r: 2177 b: refs/heads/pubsub-alpha c: 34e6806 h: refs/heads/master i: 2175: 586a74e
1 parent 5dae316 commit a66b7a1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ refs/heads/master: 689bbb466df4b2d5d2483d6edb8ac5c7c7f7c6fa
33
refs/heads/travis: e21ee7b88a5edc3f3d8c71f90c3fc32abf7e8dd6
44
refs/heads/gh-pages: 4e0561bb4504bf647db669a14417b2b2c87ba45d
55
refs/heads/bigquery: 762fa5830e6c398c0396177e3e7fd243bd62cfc3
6-
refs/heads/pubsub-alpha: 67e5dfce1f7d6903fc75a67d472c85ebb900258e
6+
refs/heads/pubsub-alpha: 34e6806becf14f1b9bf0aeac1f7cc11d2aad95b1
77
refs/heads/resource-manager: ebf4adc5ee835cd2086c4ac5b4e78d01a5a005a7
88
refs/heads/update-datastore: 482954f2c5055231e5b3122ea91d2ba00ce8187c
99
refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444

branches/pubsub-alpha/gcloud-java-core/src/main/java/com/google/gcloud/BaseServiceException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public BaseServiceException(int code, String message, String reason, boolean ide
105105
}
106106

107107
public BaseServiceException(int code, String message, String reason, boolean idempotent,
108-
Exception cause) {
108+
Throwable cause) {
109109
super(message, cause);
110110
this.code = code;
111111
this.reason = reason;

branches/pubsub-alpha/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/DatastoreException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class DatastoreException extends BaseServiceException {
3939
new Error(503, "UNAVAILABLE"));
4040
private static final long serialVersionUID = 2663750991205874435L;
4141

42-
public DatastoreException(int code, String message, String reason, Exception cause) {
42+
public DatastoreException(int code, String message, String reason, Throwable cause) {
4343
super(code, message, reason, true, cause);
4444
}
4545

branches/pubsub-alpha/gcloud-java-datastore/src/main/java/com/google/gcloud/spi/DefaultDatastoreRpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private static DatastoreException translate(
107107
return new DatastoreException((IOException) exception.getCause());
108108
}
109109
}
110-
return new DatastoreException(code, message, reason);
110+
return new DatastoreException(code, message, reason, exception);
111111
}
112112

113113
@Override

0 commit comments

Comments
 (0)