pub type ParserError<E> = Error<E>;
Expand description
Type alias for pipeline::parser::Error
.
Aliased Type§
pub enum ParserError<E> {
IoError(Error),
XmlError(Error),
UrlParseError(ParseError),
UnableToResolve(Box<ResolveRequest>),
Resolver(E),
InvalidFilePath(PathBuf),
}
Variants§
IoError(Error)
An IO error occurred.
XmlError(Error)
Error while interpreting the XML for the schema.
UrlParseError(ParseError)
Error while paring the URL.
UnableToResolve(Box<ResolveRequest>)
Unable to resolve the requested resource.
Resolver(E)
Error while resolving the requested resource.
InvalidFilePath(PathBuf)
Invalid file path!
Is raised if the file path could not be converted to an Url
.