1pub use monch::ParseErrorFailureError as ParseError;
23/// An error that can occur while formatting a Dockerfile.
4#[derive(Debug, thiserror::Error)]
5pub enum FormatError {
6/// The input could not be parsed as a Dockerfile.
7#[error(transparent)]
8Parse(#[from] ParseError),
9}