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