All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.anosite.blog.api.exception.CommentNotFoundException Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.blog.api.exception;

/**
 * CommentNotFoundException is thrown when specified comment not found by service.
 * @author vbezuhlyi
 */
public class CommentNotFoundException extends BlogAPIException {

    /**
     * Basic serial version UID.
     */
    private static final long serialVersionUID = 8615612401785445486L;

    /**
     * Constructor.
     *
     * @param data additional info (e.g. comment ID)
     */
    public CommentNotFoundException(String data) {
        super("Comment not found: " + data);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy