View Javadoc
1   package org.petify.shelter.exception;
2   
3   public class PetNotFoundException extends RuntimeException {
4       public PetNotFoundException(Long id) {
5           super("Pet with ID " + id + " not found.");
6       }
7   }