Add Error::UnsupportedFeature
This commit is contained in:
parent
ce03cc7e70
commit
b45226dbe6
1 changed files with 3 additions and 0 deletions
|
@ -35,6 +35,9 @@ pub enum Error {
|
||||||
#[error("Unsupported algorithm: {0}")]
|
#[error("Unsupported algorithm: {0}")]
|
||||||
UnsupportedAlgo(String),
|
UnsupportedAlgo(String),
|
||||||
|
|
||||||
|
#[error("Unsupported feature: {0}")]
|
||||||
|
UnsupportedFeature(String),
|
||||||
|
|
||||||
// FIXME: placeholder, remove again later?
|
// FIXME: placeholder, remove again later?
|
||||||
#[error("Internal error: {0}")]
|
#[error("Internal error: {0}")]
|
||||||
InternalError(String),
|
InternalError(String),
|
||||||
|
|
Loading…
Reference in a new issue