Basic exceptions handling mechanism.
```rust
{ use error_tools::*;
let err1 = BasicError::new( "Some error" ); println!( "err1 : {}", err1 ); // < err1 : Some error } ```
sh
cargo add werror
sh
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/error_tools_trivial
cargo run