com.goikosoft.crawler4j.parser.NotAllowedContentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crawler4j Show documentation
Show all versions of crawler4j Show documentation
crawler4j: Open Source Web Crawler for Java. Modified by Dario Goikoetxea to add POST capabilities
package com.goikosoft.crawler4j.parser;
/**
* Created by Avi on 8/19/2014.
*
* This Exception will be thrown whenever the parser tries to parse not allowed content
* For example when the parser tries to parse binary content although the user configured it not
* to do it
*/
public class NotAllowedContentException extends Exception {
public NotAllowedContentException() {
super("Not allowed to parse this type of content");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy