blob: 8e976c7b731b0ec07ece5873328b4db9f4f9ce95 (
plain)
1
2
3
4
5
6
7
8
9
|
use thiserror::Error;
#[derive(Clone, Debug, Eq, Error, PartialEq)]
pub enum CoreError {
#[error("text values must not be blank")]
EmptyText,
#[error("command recipes must contain at least one argv element")]
EmptyCommand,
}
|