1 package org.petify.feed.exception; 2 3 public class AlreadyParticipatingException extends RuntimeException { 4 public AlreadyParticipatingException(Long eventId, String username) { 5 super("User " + username + " is already participating in event with id " + eventId); 6 } 7 }