ProjectCommandException constructor
const
ProjectCommandException(
- ProjectCommandError type,
- String message, {
- String? suggestion,
- List<
String> ? examples,
Creates a new ProjectCommandException.
Parameters:
type: The error categorymessage: Primary error descriptionsuggestion: Optional resolution guidanceexamples: Optional example commands
Implementation
const ProjectCommandException(
this.type,
this.message, {
this.suggestion,
this.examples,
});