Searched refs:CommandParseError (Results 1 – 3 of 3) sorted by relevance
53 ) -> Result<Command<'a>, CommandParseError<'a>> {55 return Err(CommandParseError::Empty);76 .ok_or(CommandParseError::MalformedCommand($name))?;97 pub enum CommandParseError<'a> { enum
18 from dex.utils.Exceptions import CommandParseError31 from dex.utils.Exceptions import CommandParseError, DebuggerException179 def format_parse_err(msg: str, path: str, lines: list, point: TextPoint) -> CommandParseError:180 err = CommandParseError()292 except CommandParseError as e:387 with self.assertRaises(CommandParseError):
45 class CommandParseError(Dexception): class49 super(CommandParseError, self).__init__(*args, **kwargs)