> ## Documentation Index
> Fetch the complete documentation index at: https://starkware-9575960b-agent-options.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# core::assert

Panics if `cond` is false with the given `felt252` as error message.

## Signature

```rust
pub fn assert(cond: bool, err_code: felt252)
```

## Examples

```rust
assert(false, 'error message');
```
