Initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.alibaba.sdk.android.oss.exception;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class InconsistentException extends IOException {
|
||||
private Long clientChecksum;
|
||||
private String requestId;
|
||||
private Long serverChecksum;
|
||||
|
||||
public InconsistentException(Long l, Long l2, String str) {
|
||||
this.clientChecksum = l;
|
||||
this.serverChecksum = l2;
|
||||
this.requestId = str;
|
||||
}
|
||||
|
||||
@Override // java.lang.Throwable
|
||||
public String getMessage() {
|
||||
return "InconsistentException: inconsistent object\n[RequestId]: " + this.requestId + "\n[ClientChecksum]: " + this.clientChecksum + "\n[ServerChecksum]: " + this.serverChecksum;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user