X-Git-Url: https://code.octet-stream.net/m17rt/blobdiff_plain/1a444762d8fd7d48e4f56a87c6bd77f837522d5d..6440cd74346c4b2d63d4774476e8c6113c032534:/m17app/src/error.rs diff --git a/m17app/src/error.rs b/m17app/src/error.rs index f7079ca..ee624f9 100644 --- a/m17app/src/error.rs +++ b/m17app/src/error.rs @@ -7,4 +7,10 @@ pub enum M17Error { #[error("given callsign is {0} characters long; maximum is 9")] CallsignTooLong(usize), + + #[error("error during soundcard initialisation")] + SoundcardInit, + + #[error("unable to locate sound card '{0}' - is it in use?")] + SoundcardNotFound(String), }