use crate::{chunk_store, quic_p2p};
use quick_error::quick_error;
use safe_nd::{self, Request, Response};
use serde_json;
use std::io;
quick_error! {
#[allow(clippy::large_enum_variant)]
#[derive(Debug)]
pub enum Error {
ChunkStore(error: chunk_store::error::Error) {
cause(error)
description(error.description())
display("ChunkStore error: {}", error)
from()
}
Io(error: io::Error) {
cause(error)
description(error.description())
display("I/O error: {}", error)
from()
}
JsonSerialisation(error: serde_json::Error) {
cause(error)
description(error.description())
display("JSON serialisation error: {}", error)
from()
}
Bincode(error: bincode::Error) {
cause(error)
description(error.description())
display("Bincode error: {}", error)
from()
}
PickleDb(error: pickledb::error::Error) {
display("PickleDb error: {}", error)
from()
}
Networking(error: quic_p2p::Error) {
cause(error)
description(error.description())
display("Networking error: {}", error)
from()
}
NetworkData(error: safe_nd::Error) {
cause(error)
description(error.description())
display("NetworkData error: {}", error)
from()
}
NetworkDataEntry(error: safe_nd::EntryError) {
display("NetworkData Entry error: {:?}", error)
from()
}
UnknownRequestType(request: Request) {
display("Unknown Request type: {:?}", request)
}
UnknownResponseType(response: Response) {
display("Unknown Response type: {:?}", response)
}
InvalidMessage {}
NoSuchAccount {}
Logic {}
}
}
pub type Result<T, E = Error> = std::result::Result<T, E>;