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