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