{
try
{
// Verify that tracking id doesn't exist in store
uowf.currentUnitOfWork().get( Cargo.class, id );
throw new CannotCreateCargoException( "Tracking id '" + id + "' is not unique." );
}
catch( NoSuchEntityException e )
{
// Ok: tracking id is unique
}