View Javadoc
1   package org.petify.shelter.exception;
2   
3   public class ShelterIsNotActiveException extends RuntimeException {
4       public ShelterIsNotActiveException(Long shelterId) {
5           super("Shelter with id: " + shelterId + " is not active");
6       }
7   
8       public ShelterIsNotActiveException() {
9           super("Shelter is not active.");
10      }
11  }