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.
1 parent 1307910 commit 972105bCopy full SHA for 972105b
azure/src/main/java/ch/cyberduck/core/azure/AzureExceptionMappingService.java
@@ -39,13 +39,6 @@ public class AzureExceptionMappingService extends AbstractExceptionMappingServic
39
public BackgroundException map(final StorageException failure) {
40
final StringBuilder buffer = new StringBuilder();
41
this.append(buffer, failure.getMessage());
42
- if(failure.getExtendedErrorInformation() != null) {
43
- for(String[] details : failure.getExtendedErrorInformation().getAdditionalDetails().values()) {
44
- for(String detail : details) {
45
- this.append(buffer, detail);
46
- }
47
48
49
if(ExceptionUtils.getRootCause(failure) instanceof UnknownHostException) {
50
return new NotfoundException(buffer.toString(), failure);
51
}
0 commit comments