class ExpoError(Exception): """Base class for custom exception from Expo.""" class MultipleProjectsError(ExpoError): """Batch with tokens related to different projects was sent to Expo. Error with 'PUSH_TOO_MANY_EXPERIENCE_IDS' code. """ token_groups: dict def __init__(self, token_groups): self.token_groups = token_groups