Source code for tamr_client.primary_key

from tamr_client.exception import TamrClientException


[docs]class Ambiguous(TamrClientException): """Raised when referencing a primary key by name that matches multiple possible targets.""" pass
[docs]class NotFound(TamrClientException): """Raised when referencing a primary key by name that does not exist.""" pass