lightstreamer_rs/utils/mod.rs
1/******************************************************************************
2 Author: Joaquín Béjar García
3 Email: jb@taunais.com
4 Date: 16/5/25
5******************************************************************************/
6
7/// Module containing custom error types used throughout the library.
8///
9/// This module provides specialized error types for handling different error scenarios,
10/// such as illegal arguments and illegal states.
11pub mod error;
12mod proxy;
13mod util;
14
15mod logger;
16
17pub use error::{IllegalArgumentException, IllegalStateException};
18pub use logger::{setup_logger, setup_logger_with_level};
19pub use proxy::Proxy;
20pub use util::{clean_message, parse_arguments, setup_signal_hook};