polywrap_plugin 0.1.11

Core package to build plugins in rust to interact with Polywrap Client
Documentation
use polywrap_core::error::Error;
use polywrap_msgpack_serde::Error as MsgpackError;

#[derive(thiserror::Error, Debug)]
pub enum PluginError {
    #[error("PluginWrapper: invocation exception encountered.\nexception: {exception:?}")]
    InvocationError { exception: String },

    #[error("Method '`{0}`' not found")]
    MethodNotFoundError(String),

    #[error(transparent)]
    JSONError(#[from] serde_json::error::Error),

    #[error(transparent)]
    MsgpackError(#[from] MsgpackError),
}

impl From<PluginError> for Error {
    fn from(e: PluginError) -> Self {
        Error::PluginError(e.to_string())
    }
}