EnvironmentParsingException constructor
EnvironmentParsingException(
- String message
An Exception thrown when an error occurs during environment property parsing.
This exception typically indicates that the environment configuration contains invalid or malformed values that cannot be properly interpreted.
Example usage:
if (someParsingError) {
throw EnvironmentParsingException('Failed to parse environment variable XYZ');
}
Catch this exception to handle or report environment parsing failures specifically.
Implementation
EnvironmentParsingException(super.message);