Interface ContentTooLargeError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
ContentTooLargeErrorImpl

public interface ContentTooLargeError extends ErrorObject

Returned when the request results in too much data being returned from the API. Adjust the request query to reduce the size of the data returned.


Example to create an instance using the builder pattern

     ContentTooLargeError contentTooLargeError = ContentTooLargeError.builder()
             .message("{message}")
             .build()