2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-29 21:23:34 +08:00

firmware: add UnwrapNoneError exception

This commit is contained in:
Sebastien Bourdeauducq 2022-03-26 15:27:49 +08:00
parent 457f3c72ce
commit a4c1f8a079

View File

@ -344,7 +344,8 @@ static EXCEPTION_ID_LOOKUP: [(&str, u32); 10] = [
("CacheError", 6),
("SPIError", 7),
("ZeroDivisionError", 8),
("IndexError", 9)
("IndexError", 9),
("UnwrapNoneError", 10),
];
pub fn get_exception_id(name: &str) -> u32 {