“Times are bad. Children no longer obey their parents, and everyone is writing an error handling library.” — Cicero

fast, cheap, and out of control exceptions for rust.

Usage

First, add this to your Cargo.toml: toml [dependencies] eliza_error = "0.99.0";

You can now throw exceptions!

```rust use eliza_error::{Error, throw};

fn mygreatfunction() -> Result<(), Error> { if iseverythingterrible() { throw!("everything is terrible!"); } Ok(()) } ```

Eliza errors also work fine with errors from the standard library.

```rust use eliza_error::{Error, throw}; use std::fs::File; use std::io::prelude::*;

fn lookatfile() -> Result<(), Error> { let mut file = File::open("thisfiledoesntexist.txt")?; let mut contents = String::new(); file.readto_string(&mut contents)?; if contents == "everything is terrible!!!" { throw!("wow, everything is still terrible!!!"); } Ok(()) } ```

Why should I use this?