mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-28 03:21:54 +00:00
6 lines
174 B
Rust
6 lines
174 B
Rust
![]() |
use crate::FlowyError;
|
||
|
|
||
|
impl std::convert::From<serde_json::Error> for FlowyError {
|
||
|
fn from(error: serde_json::Error) -> Self { FlowyError::internal().context(error) }
|
||
|
}
|