com.github.bottomlessarchive.warc.service.WarcNetworkException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-warc Show documentation
Show all versions of java-warc Show documentation
A WARC file reader and parser written in Java.
package com.github.bottomlessarchive.warc.service;
public class WarcNetworkException extends RuntimeException {
public WarcNetworkException(final String message, final Throwable e) {
super(message, e);
}
}