1 package org.petify.shelter.exception;
2
3 public class AdoptionAlreadyExistsException extends RuntimeException {
4 public AdoptionAlreadyExistsException(Long petId, String username) {
5 super(String.format("User '%s' already has a pending adoption request for pet with ID %d", username, petId));
6 }
7 }