Interface ReferenceExistsError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
ReferenceExistsErrorImpl

public interface ReferenceExistsError extends ErrorObject

Returned when a resource cannot be deleted because it is being referenced by another resource.


Example to create an instance using the builder pattern

     ReferenceExistsError referenceExistsError = ReferenceExistsError.builder()
             .message("{message}")
             .build()