package se.bilhalsning.exception; public class VehicleNotFoundException extends RuntimeException { public VehicleNotFoundException(String plate) { super("Vehicle not found: " + plate); } }