Coverage Summary for Class: CityNotFoundException (dev.karlkadak.backend.exception)
Class | Class, % | Method, % | Line, % |
---|---|---|---|
CityNotFoundException | 100% (1/1) | 100% (2/2) | 100% (2/2) |
package dev.karlkadak.backend.exception;
public class CityNotFoundException extends RuntimeException {
public CityNotFoundException() {
super("City not found.");
}
public CityNotFoundException(long id) {
super("City with ID " + id + " not found.");
}
}