The SimdJsonException class

(PECL simdjson >= 2.1.0)

Introduction

Exception thrown if simdjson_decode(), simdjson_key_count(), simdjson_key_exists(), or simdjson_key_value(). For possible values see the simdjson error codes constants.

Class synopsis

classSimdJsonExceptionextendsRuntimeException {
protectedstring$message = "";
privatestring$string = "";
protectedint$code;
protectedstring$file = "";
protectedint$line;
privatearray$trace = [];
private?Throwable$previous = null;
}
To Top