com.microsoft.bingads.v13.bulk.EntityWriteException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
package com.microsoft.bingads.v13.bulk;
/**
* This exception is thrown when attempting to write entities to a bulk file using BulkFileWriter.writeEntity.
* To resolve this exception you can first check the stack trace to see the error details, in case there is some action you can take to resolve the issue.
* For example you might have specified an invalid value for one of the upload entities.
*/
public class EntityWriteException extends RuntimeException {
/**
* Initializes a new instance of the EntityWriteException class.
*
* @param message the error message
* @param cause the cause
*/
public EntityWriteException(String message, Throwable cause) {
super(message, cause);
}
}