jsonrpsee_core/error.rs
1// Copyright 2019-2021 Parity Technologies (UK) Ltd.
2//
3// Permission is hereby granted, free of charge, to any
4// person obtaining a copy of this software and associated
5// documentation files (the "Software"), to deal in the
6// Software without restriction, including without
7// limitation the rights to use, copy, modify, merge,
8// publish, distribute, sublicense, and/or sell copies of
9// the Software, and to permit persons to whom the Software
10// is furnished to do so, subject to the following
11// conditions:
12//
13// The above copyright notice and this permission notice
14// shall be included in all copies or substantial portions
15// of the Software.
16//
17// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
18// ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
19// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
20// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
21// SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
24// IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25// DEALINGS IN THE SOFTWARE.
26
27/// A type that returns the error as a `String` from `SubscriptionCallback`.
28#[derive(Debug)]
29pub struct StringError(pub(crate) String);
30
31impl<T: ToString> From<T> for StringError {
32 fn from(val: T) -> Self {
33 StringError(val.to_string())
34 }
35}
36
37/// The error returned when registering a method or subscription failed.
38#[derive(Debug, Clone, thiserror::Error)]
39pub enum RegisterMethodError {
40 /// Method was already registered.
41 #[error("Method: {0} was already registered")]
42 AlreadyRegistered(String),
43 /// Subscribe and unsubscribe method names are the same.
44 #[error("Cannot use the same method name for subscribe and unsubscribe, used: {0}")]
45 SubscriptionNameConflict(String),
46 /// Method with that name has not yet been registered.
47 #[error("Method: {0} has not yet been registered")]
48 MethodNotFound(String),
49}