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