🚚 Renombra ErrorParam por ContextError

This commit is contained in:
Manuel Cillero 2025-09-30 23:45:13 +02:00
parent 284d157931
commit 8912bbc8ec
3 changed files with 21 additions and 23 deletions

View file

@ -31,12 +31,12 @@ pub type ContextOp = crate::core::component::ContextOp;
)]
pub trait Contextual: crate::core::component::Contextual {}
/// **Obsoleto desde la versión 0.5.0**: usar [`core::component::ErrorParam`] en su lugar.
/// **Obsoleto desde la versión 0.5.0**: usar [`core::component::ContextError`] en su lugar.
#[deprecated(
since = "0.5.0",
note = "Moved to `pagetop::core::component::ErrorParam`"
note = "Moved to `pagetop::core::component::ContextError`"
)]
pub type ErrorParam = crate::core::component::ErrorParam;
pub type ContextError = crate::core::component::ContextError;
/// **Obsoleto desde la versión 0.5.0**: usar [`ContextOp`] en su lugar.
#[deprecated(since = "0.5.0", note = "Use `ContextOp` instead")]