1 package org.petify.shelter.exception; 2 3 public class AdoptionFormNotFoundException extends RuntimeException { 4 public AdoptionFormNotFoundException(Long id) { 5 super("Form with id: " + id + " not found."); 6 } 7 }