stak-vm 0.12.13

Virtual machines for Stak Scheme
Documentation
1
2
3
4
5
6
7
8
use crate::Error;
use core::error;

/// An exception.
pub trait Exception: From<Error> + error::Error {
    /// Returns `true` if an error is critical and not recoverable.
    fn is_critical(&self) -> bool;
}