ss58_registry/
error.rs

1// Copyright (C) 2021-2022 Parity Technologies (UK) Ltd.
2// SPDX-License-Identifier: Apache-2.0
3
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// 	http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16/// Error encountered while parsing `Ss58AddressFormat` from &'_ str
17/// unit struct for now.
18#[derive(Copy, Clone, PartialEq, Eq, Debug)]
19pub struct ParseError;
20
21#[cfg(feature = "std")]
22impl std::fmt::Display for ParseError {
23	fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
24		write!(f, "failed to parse network value as u16")
25	}
26}
27
28#[cfg(feature = "std")]
29impl std::error::Error for ParseError {}