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

me.qyh.instd4j.parser.exception.PostNotFoundException Maven / Gradle / Ivy

There is a newer version: 0.3
Show newest version
package me.qyh.instd4j.parser.exception;

public class PostNotFoundException extends LogicException {

    private final String shortcode;

    public PostNotFoundException(String shortcode) {
        super(null);
        this.shortcode = shortcode;
    }

    public String getShortcode() {
        return shortcode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy