1 package org.petify.shelter.exception;
2
3 public class ShelterAlreadyExistsException extends RuntimeException {
4 public ShelterAlreadyExistsException(String username) {
5 super("Shelter already exists for user: " + username);
6 }
7 }