You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yacy_search_server/source/net/yacy/crawler/retrieval/ImporterException.java

18 lines
470 B

// SPDX-FileCopyrightText: 2004 Michael Peter Christen <mc@yacy.net)>
// SPDX-License-Identifier: GPL-2.0-or-later
13 years ago
package net.yacy.crawler.retrieval;
public class ImporterException extends Exception {
private static final long serialVersionUID = 6070972210596234670L;
public ImporterException(final String message) {
super(message);
}
public ImporterException(final String message, final Throwable cause) {
super(message, cause);
}
}