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), }