1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use thiserror::Error;

#[derive(Error, Debug, PartialEq)]
pub enum Error {
	#[error("Package doesn't have a main template")]
	NoMain,
	#[error("Package is neither directory nor a .tgz")]
	InvalidFormat,
	#[error("Missing package file")]
	NoSpec,
	#[error("Invalid package file")]
	InvalidSpec,
	#[error("No schema file to validate your values")]
	NoSchema,
	#[error("Invalid schema file")]
	InvalidSchema,
	#[error("No values where provided")]
	NoValues,
	#[error("The values provided don't match the schema")]
	InvalidValues,
	#[error("An error happened while rendering your templates: {0}")]
	RenderIssue(String),
	#[error("Your template couldn't be parsed as JSON")]
	InvalidOutput,
}

pub type Result<T> = std::result::Result<T, Error>;