com.microsoft.bingads.v13.bulk.CouldNotGetBulkOperationStatusException Maven / Gradle / Ivy
package com.microsoft.bingads.v13.bulk;
/**
* This exception is thrown if the BulkServiceManager failed to get the upload or download operation status after multiple retries.
*/
public class CouldNotGetBulkOperationStatusException extends RuntimeException {
public CouldNotGetBulkOperationStatusException(Exception exception) {
super(exception);
}
public CouldNotGetBulkOperationStatusException(String message) {
super(message);
}
public CouldNotGetBulkOperationStatusException(String message, Throwable throwable) {
super(message, throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy