[][src]Module dark_vm::errors

The Errors module, which contains the Error struct and the ErrorKind enum. These describe the various errors that could occur during the program execution.

Modules

error

The error module, which contains information about different errors and also handles them. The Error struct maintains the errors that occur during execution.

error_kind

The error_kind module, which contains the ErrorKind enum. This enum describes the various kinds of errors that can occur. The ErrorKind enum maintains the different errors that can occur during the execution of the program. This allows for uniformity across the various errors because the error messages are the same. This also increases readibility within the code, because the ErrorKind's are more descriptive.