WorkspaceException constructor

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

Implementation

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