org.jboss.windup.graph.dao.exception.ArchiveIndexWriteException Maven / Gradle / Ivy
The newest version!
package org.jboss.windup.graph.dao.exception;
public class ArchiveIndexWriteException extends Exception {
public ArchiveIndexWriteException(String message) {
super(message);
}
public ArchiveIndexWriteException(String message, Throwable t) {
super(message, t);
}
}