//! Provides `Exception` trait.
usecrate::execution_class::ExecutionClass;/// Exception processing trait.
pubtraitException{/// Extract exception info and return it as a `ExecutionClass` struct.
fnparse_exception(stream:&str)->Option<ExecutionClass>;}