View Javadoc
1   package org.petify.shelter.exception;
2   
3   public class PetIsArchivedException extends RuntimeException {
4       public PetIsArchivedException(Long id) {
5           super("Pet with id: " + id + " is archived!");
6       }
7   }