social-library-stubs/src/main/java/org/gcube/portal/databook/shared/ex/FeedIDNotFoundException.java

9 lines
291 B
Java
Raw Normal View History

2023-11-27 16:42:53 +01:00
package org.gcube.portal.databook.shared.ex;
@SuppressWarnings("serial")
public class FeedIDNotFoundException extends Exception {
public FeedIDNotFoundException(String message, String postId) {
super("The Post having id: " + postId + " is not present in the database: " + message);
}
}