1 package org.petify.shelter.exception; 2 3 public class ShelterByOwnerNotFoundException extends RuntimeException { 4 public ShelterByOwnerNotFoundException(String username) { 5 super("No shelter connected to user: " + username + " found."); 6 } 7 }