Enum little::LittleError [] [src]

pub enum LittleError {
    ParameterMissing(String),
    ConstantMissing(Constant),
    CallMissing(Call),
    CallError(Box<Error + Sync + Send>),
    OutputError(Error),
    BuildError(BuildError),
    StackUnderflow,
    Interupt,
}

Runtime error.

Variants

A parameter was required for an instruction, but it was not found.

A constant was required for an instruction, but it was not found.

A call was required for an instruction, but it was not found.

A call has returned an error.

I/O error writing template result to output.

Error building the template.

Attempt to pop values on empty stack.

Instruction has caused an interupt, it is up to user to know how to handle it.

Trait Implementations

impl Debug for LittleError
[src]

Formats the value using the given formatter.

impl From<Error> for LittleError
[src]

Performs the conversion.

impl From<BuildError> for LittleError
[src]

Performs the conversion.

impl Display for LittleError
[src]

Formats the value using the given formatter. Read more

impl Error for LittleError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more