Interface AnonymousIdAlreadyInUseError

All Superinterfaces:
ErrorObject

public interface AnonymousIdAlreadyInUseError extends ErrorObject

Returned when the anonymous ID is being used by another resource.

The client application should choose another anonymous ID or retrieve an automatically generated one.


Example to create an instance using the builder pattern

     AnonymousIdAlreadyInUseError anonymousIdAlreadyInUseError = AnonymousIdAlreadyInUseError.builder()
             .message("{message}")
             .build()