CatException constructor Null safety

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

Thrown if the cat function encouters an error.

Implementation

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