imdb-spider/core/src/main/java/ru/bvn13/imdbspider/exceptions/ImdbSpiderException.java

27 lines
641 B
Java
Raw Normal View History

2019-01-09 17:57:37 +03:00
package ru.bvn13.imdbspider.exceptions;
/**
* @author boyko_vn at 09.01.2019
*/
public class ImdbSpiderException extends Exception {
public ImdbSpiderException() {
}
public ImdbSpiderException(String message) {
super(message);
}
public ImdbSpiderException(String message, Throwable cause) {
super(message, cause);
}
public ImdbSpiderException(Throwable cause) {
super(cause);
}
public ImdbSpiderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}