penumbra_sdk_transaction/
error.rs

1#[derive(thiserror::Error, Debug, PartialEq, Eq)]
2pub enum Error {
3    #[error("Chain ID not set")]
4    NoChainID,
5    #[error("Fee not set")]
6    FeeNotSet,
7    #[error("Value balance of this transaction is not zero")]
8    NonZeroValueBalance,
9}