blob: 00f347215f78852de42663457a2f7300fa744f64 [file] [log] [blame]
/***********************************************************************************************************************
* Copyright (c) 2008 empolis GmbH and brox IT Solutions GmbH. All rights reserved. This program and the accompanying
* materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Daniel Stucky (empolis GmbH) - initial API and implementation
**********************************************************************************************************************/
package org.eclipse.smila.connectivity.framework;
/**
* Standard Exception used by Crawlers.
*/
public class CrawlerException extends Exception {
/**
*
*/
private static final long serialVersionUID = -1165046234076776725L;
/**
* Creates a CrawlerException.
*/
public CrawlerException() {
super();
}
/**
* Creates a CrawlerException.
*
* @param message
* the detail message
*/
public CrawlerException(final String message) {
super(message);
}
/**
* Creates a CrawlerException.
*
* @param cause
* the cause
*/
public CrawlerException(final Throwable cause) {
super(cause);
}
/**
* Creates a CrawlerException.
*
* @param message
* the detail message
* @param cause
* the cause
*/
public CrawlerException(final String message, final Throwable cause) {
super(message, cause);
}
}