or this if you want to simplify a bit ```rust pub enum Error { Spi(S), Pin(P), Other, } // and in the driver fn foo(...) -> Result<..., Error> { ...}