X-Git-Url: https://code.octet-stream.net/m17rt/blobdiff_plain/18349069c27a0b4fb2e39669fb535600805ad160..HEAD:/m17app/src/error.rs diff --git a/m17app/src/error.rs b/m17app/src/error.rs index f7079ca..36d5ac0 100644 --- a/m17app/src/error.rs +++ b/m17app/src/error.rs @@ -7,4 +7,13 @@ 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), + + #[error("unable to set up RTL-SDR receiver")] + RtlSdrInit, }