export declare class WeatherException extends Error { constructor(message: string); } export declare class WeatherNotFoundException extends WeatherException { constructor(message: string); } export declare class WeatherValidationException extends WeatherException { constructor(message: string); } export declare class WeatherNotSupportedException extends WeatherException { constructor(message: string); }