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); } }