Skip to main content

rivet_error/
lib.rs

1mod error;
2mod schema;
3
4pub use error::{ActorSpecifier, RivetError, RivetErrorKind};
5pub use schema::{MacroMarker, RivetErrorSchema, RivetErrorSchemaWithMeta};
6
7pub use rivet_error_macros::RivetError;
8
9pub static INTERNAL_ERROR: RivetErrorSchema =
10	RivetErrorSchema::__internal_new("core", "internal_error", "An internal error occurred");
11
12#[doc(hidden)]
13pub use indoc;