We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c01b261 + 5bd19cd commit 1497300Copy full SHA for 1497300
src/com/akamai/netstorage/NetStorageException.java
@@ -28,12 +28,12 @@ public class NetStorageException extends RequestSigningException {
28
private static final long serialVersionUID = 5716437270940718895L;
29
private int responseCode = -1;
30
31
- public NetStorageException(String message) {
+ public NetStorageException(String message) {
32
super(message);
33
}
34
35
public NetStorageException(Throwable cause) {
36
- super(cause);
+ this(cause.getMessage(), cause);
37
38
39
public NetStorageException(String message, int responseCode) {
0 commit comments