1
2
3
4
5
6
7
8
/// Enum to describe errors that might occur during L1 -> L2 communication.
#[derive(Debug, thiserror::Error)]
pub enum L1CommunicationError {
    #[error("NewPriorityRequest event log was not found in L1 -> L2 transaction.")]
    NewPriorityRequestLogNotFound,
    #[error("Custom L1 -> L2 communication error.")]
    Custom(&'static str),
}