Interface InvalidOperation

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
InvalidOperationImpl

public interface InvalidOperation extends ErrorObject

The resources in the request are not in the valid state for the operation. The client application should validate the constraints described in the error message before sending the request again.


Example to create an instance using the builder pattern

     InvalidOperation invalidOperation = InvalidOperation.builder()
             .message("{message}")
             .build()