VirtualBox

source: vbox/trunk/src/VBox/Additions/3D/mesa/mesa-24.0.2/.gitlab-ci/lava/exceptions.py@ 103996

Last change on this file since 103996 was 103996, checked in by vboxsync, 13 months ago

Additions/3D/mesa: export mesa-24.0.2 to OSE. bugref:10606

File size: 746 bytes
Line 
1from datetime import timedelta
2
3
4class MesaCIException(Exception):
5 pass
6
7
8class MesaCITimeoutError(MesaCIException):
9 def __init__(self, *args, timeout_duration: timedelta) -> None:
10 super().__init__(*args)
11 self.timeout_duration = timeout_duration
12
13
14class MesaCIRetryError(MesaCIException):
15 def __init__(self, *args, retry_count: int, last_job: None) -> None:
16 super().__init__(*args)
17 self.retry_count = retry_count
18 self.last_job = last_job
19
20
21class MesaCIParseException(MesaCIException):
22 pass
23
24
25class MesaCIKnownIssueException(MesaCIException):
26 """Exception raised when the Mesa CI script finds something in the logs that
27 is known to cause the LAVA job to eventually fail"""
28
29 pass
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette