resticular 0.1.12

Blazingly Fast Static Site Generator
Documentation
use thiserror::Error;
use tera::Error as TeraError;
use toml::de::Error as DeError;
#[derive(Debug, Error)]
pub enum Error {
    #[error("Parser Error: {0}")]
    ParserError(String),
    #[error("File I/O: {0}")]
    FileIOError(#[from] std::io::Error),
    #[error("{0}")]
    HtmlMinifyError(String),
    #[error("Condition failed")]
    PageCheckError,
    #[error("Html rewriting error {0}")]
    HtmlRewriteError(#[from] lol_html::errors::RewritingError),
    #[error("{0} failed while doing {1}")]
    ThreadFailed(String, String),
    #[error("{0}")]
    FileSystemWatchError(#[from] hotwatch::Error),
    #[error("Error while sending message from a thread.")]
    MsgError,
    #[error("Error while receiving message from a thread.")]
    RecvError,
    #[error("Fs Error: {0}")]
    FsError(#[from] fs_extra::error::Error),
    #[error("Config file error: {0}")]
    ConfigFileError(#[from] ConfigError),
    #[error("There is a `restic-markdown` tag without the file attribute.")]
    ResticMarkdownEmpty,
    #[error("Tera Template Error: {0}")]
    TeraError(#[from] TeraError),
    #[error("Template Error: {0}")]
    TemplateError(#[from] TemplateError),
    #[error("Essential folder does not exist: {0}")]
    EssentialFolderNotExist(String)

}

#[derive(Debug, Error)]
pub enum TemplateError {
    #[error("Invalid Expression: {0}")]
    InvalidExpression(String),
    #[error("Invalid Data Type Used: {0}")]
    InvalidValueTypeInDataFile(String)
}


#[derive(Debug, Error)]
pub enum ConfigError {
    #[error("{0}")]
    ConfigFileNotFound(String),
    #[error("Required Field: {0}")]
    ConfigFileRequiredField(#[from] DeError),
    #[error("Parse Error: {0}")]
    ConfigFileParseError(String)
}