org.redline_rpm.RedlineException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redline Show documentation
Show all versions of redline Show documentation
Redline is a pure Java library for manipulating RPM Package Manager packages.
package org.redline_rpm;
import java.io.IOException;
@SuppressWarnings("serial")
public class RedlineException extends IOException {
public RedlineException(String message) {
super(message);
}
public RedlineException(String message, Throwable throwable) {
super(message, throwable);
}
}