Skip to content

Commit

Permalink
more source
Browse files Browse the repository at this point in the history
  • Loading branch information
Eh2406 committed Mar 14, 2024
1 parent 58f786b commit 91a7c9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ where
/// returned an error in the method
/// [choose_version](crate::solver::DependencyProvider::choose_version).
#[error("Decision making failed")]
ErrorChoosingPackageVersion(DP::Err),
ErrorChoosingPackageVersion(#[source] DP::Err),

/// Error arising when the implementer of [DependencyProvider]
/// returned an error in the method [should_cancel](crate::solver::DependencyProvider::should_cancel).
#[error("We should cancel")]
ErrorInShouldCancel(DP::Err),
ErrorInShouldCancel(#[source] DP::Err),

/// Something unexpected happened.
#[error("{0}")]
Expand Down

0 comments on commit 91a7c9f

Please sign in to comment.