firmware: add UnwrapNoneError exception

pull/182/head
Sebastien Bourdeauducq 2022-03-26 15:29:40 +08:00
parent a92561b9d3
commit dcfaf587ec
1 changed files with 2 additions and 1 deletions

View File

@ -416,7 +416,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 {