me.qyh.instd4j.parser.exception.PostNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of instd4j Show documentation
Show all versions of instd4j Show documentation
Instagram private api for download
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;
}
}