summaryrefslogtreecommitdiff
path: root/docs/application/error.md
blob: 77a97cbd3faeab8f979bfdee8eee6d7080e0d381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Error

---

## Object Definitions

```c
typedef struct _kpl_error {
    KPL_SLAB_HEADER(_kpl_error);
    char *file, *function;
    kpl_class class;
    int32_t line;
} kpl_error;
```