mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: reminder (#3374)
This commit is contained in:
@ -137,3 +137,9 @@ impl From<anyhow::Error> for FlowyError {
|
||||
.unwrap_or_else(|err| FlowyError::new(ErrorCode::Internal, err))
|
||||
}
|
||||
}
|
||||
|
||||
impl From<fancy_regex::Error> for FlowyError {
|
||||
fn from(e: fancy_regex::Error) -> Self {
|
||||
FlowyError::internal().with_context(e)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user