CatchException constructor

CatchException(
  1. Error? error,
  2. Exception? exception
)

Implementation

CatchException(Error? error, Exception? exception) {
  _error = error;
  _exception = exception;
}