Interface ExtensionUpdateActionsFailedError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
ExtensionUpdateActionsFailedErrorImpl

Returned when update actions could not be applied to the resource (for example, because a referenced resource does not exist). This would result in a 400 Bad Request response if the same update action was sent from a regular client.


Example to create an instance using the builder pattern

     ExtensionUpdateActionsFailedError extensionUpdateActionsFailedError = ExtensionUpdateActionsFailedError.builder()
             .message("{message}")
             .plusExtensionErrors(extensionErrorsBuilder -> extensionErrorsBuilder)
             .build()