Coverage Summary for Class: WeatherDataMissingException (dev.karlkadak.backend.exception)

Class Class, % Method, % Line, %
WeatherDataMissingException 100% (1/1) 100% (1/1) 100% (1/1)


 package dev.karlkadak.backend.exception;
 
 public class WeatherDataMissingException extends RuntimeException {
 
     public WeatherDataMissingException() {
         super("Weather data for given city has not been recorded yet.");
     }
 }