social-service-model/src/main/java/org/gcube/social_networking/socialnetworking/model/shared/exceptions/PostIDNotFoundException.java

9 lines
324 B
Java

package org.gcube.social_networking.socialnetworking.model.shared.exceptions;
@SuppressWarnings("serial")
public class PostIDNotFoundException extends Exception {
public PostIDNotFoundException(String message, String postId) {
super("The Post having id: " + postId + " is not present in the database: " + message);
}
}