// Abstract semantic graph (ASG) errors // // Copyright (C) 2014-2022 Ryan Specialty Group, LLC. // // This file is part of TAME. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . //! Errors resulting from operations on the ASG. use std::{ error::Error, fmt::{self, Display}, }; use crate::diagnose::{AnnotatedSpan, Diagnostic}; use super::TransitionError; /// An error from an ASG operation. #[derive(Debug, PartialEq)] pub enum AsgError { /// An object could not change state in the manner requested. IdentTransition(TransitionError), } impl Display for AsgError { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { match self { Self::IdentTransition(err) => Display::fmt(&err, fmt), } } } impl Error for AsgError { fn source(&self) -> Option<&(dyn Error + 'static)> { match self { Self::IdentTransition(err) => err.source(), } } } impl From for AsgError { fn from(err: TransitionError) -> Self { Self::IdentTransition(err) } } impl Diagnostic for AsgError { fn describe(&self) -> Vec { // TODO: This won't be useful until we have spans. vec![] } }