ReadException constructor Null safety

ReadException(
  1. String reason,
  2. [StackTraceImpl? stacktrace]
)

Thrown when the read function encouters an error.

Implementation

ReadException(String reason, [StackTraceImpl? stacktrace])
    : super(reason, stacktrace);