1 package org.petify.feed.exception; 2 3 public class MaxEventCapacityReachedException extends RuntimeException { 4 public MaxEventCapacityReachedException(Long eventId, int capacity) { 5 super("Cannot join event. Event with id " + eventId + " has already reached its maximum capacity (" + capacity + ")"); 6 } 7 }