Interface AttributeNameDoesNotExistError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
AttributeNameDoesNotExistErrorImpl

Returned when an AttributeDefinition does not exist for an Attribute name.

The error is returned as a failed response to the Change AttributeDefinition Name update action.


Example to create an instance using the builder pattern

     AttributeNameDoesNotExistError attributeNameDoesNotExistError = AttributeNameDoesNotExistError.builder()
             .message("{message}")
             .invalidAttributeName("{invalidAttributeName}")
             .build()