Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions dragonfly-client-core/src/error/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,14 @@ pub enum DFError {
#[error("max number of files to download exceeded: {0}")]
MaxDownloadFilesExceeded(usize),

/// DigestManifestParseFailed is the error for digest manifest parsing failure.
#[error("digest manifest {filepath} parse failed: {error}")]
DigestManifestParseFailed { filepath: String, error: String },

/// MissingDigestEntry is the error when a non-directory entry has no corresponding digest.
#[error("missing digest for entry: {entry_url}")]
MissingDigestEntry { entry_url: String },

/// Unsupported is the error for unsupported.
#[error("unsupported {0}")]
Unsupported(String),
Expand Down
Loading