(context: &str)
| 65 | use super::*; |
| 66 | |
| 67 | pub fn no_start_line(context: &str) -> io::Error { |
| 68 | invalid_data(format!("no start line: {context}")) |
| 69 | } |
| 70 | |
| 71 | pub fn parse_failed(e: impl Display) -> io::Error { |
| 72 | invalid_data(format!("Failed to parse PEM certificate: {e}")) |
no test coverage detected