WorkspaceException constructor

WorkspaceException([
  1. Iterable<String>? errors,
  2. Exception? nestedException,
  3. StackTrace? nestedStackTrace
])

Implementation

WorkspaceException([
  final Iterable<String>? errors,
  final Exception? nestedException,
  final StackTrace? nestedStackTrace,
]) : super(
       errors: errors,
       nestedException: nestedException,
       nestedStackTrace: nestedStackTrace,
     );