sui_indexer_alt_jsonrpc/api/name_service/
error.rs

1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

#[derive(thiserror::Error, Debug)]
pub(super) enum Error {
    #[error("Domain not found: {0}")]
    NotFound(String),

    #[error(transparent)]
    NameService(sui_name_service::NameServiceError),
}