Interface InvalidOperationError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
InvalidOperationErrorImpl

public interface InvalidOperationError extends ErrorObject

Returned when the resources involved in the request are not in a valid state for the operation.

The client application should validate the constraints described in the error message before sending the request.


Example to create an instance using the builder pattern

     InvalidOperationError invalidOperationError = InvalidOperationError.builder()
             .message("{message}")
             .build()