
    @i                     `    d Z  G d de      Z G d de      Z G d de      Z G d de      Zy	)
z-
Custom exceptions for django-cronjob-utils.
c                       e Zd ZdZy)CronJobErrorz.Base exception for all cronjob-related errors.N__name__
__module____qualname____doc__     S/home/cursorai/projects/django-cronjob-utils/src/django_cronjob_utils/exceptions.pyr   r      s    8r
   r   c                       e Zd ZdZy)TaskNotFoundErrorz0Raised when a task is not found in the registry.Nr   r	   r
   r   r   r      s    :r
   r   c                       e Zd ZdZy)ConcurrentExecutionErrorz=Raised when attempting to run a task that is already running.Nr   r	   r
   r   r   r      s    Gr
   r   c                       e Zd ZdZy)ValidationErrorz"Raised when task validation fails.Nr   r	   r
   r   r   r      s    ,r
   r   N)r   	Exceptionr   r   r   r   r	   r
   r   <module>r      s:   
	9 	
	 	
	| 	
	l 	r
   