View Javadoc
1   package org.petify.shelter.exception;
2   
3   public class PetMaxImagesReachedException extends RuntimeException {
4       public PetMaxImagesReachedException(Long id) {
5           super("Pet with id " + id + " reached max images (5).");
6       }
7   }