View Javadoc
1   package org.petify.feed.exception;
2   
3   public class FeedItemNotFoundException extends RuntimeException {
4       public FeedItemNotFoundException(Long feedItemId, String itemType) {
5           super(itemType + " with id " + feedItemId + " not found");
6       }
7   
8       public FeedItemNotFoundException(String feedItemId, String itemType) {
9           super(itemType + " with id " + feedItemId + " not found");
10      }
11  }