ErrorCodeException constructor
Creates a new instance of the ErrorCodeException class.
The message
parameter is required, while the code
parameter is optional.
Implementation
const ErrorCodeException({
required this.message,
this.code,
});
Creates a new instance of the ErrorCodeException class.
The message
parameter is required, while the code
parameter is optional.
const ErrorCodeException({
required this.message,
this.code,
});