Skip to main content

rfs_runner/
error.rs

1#[derive(thiserror::Error, Debug)]
2pub enum Error {
3  #[error("No channel available")]
4  NoChannel,
5  #[error("{0}")]
6  Missing(&'static str),
7}