All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.redline_rpm.RedlineException Maven / Gradle / Ivy

Go to download

Redline is a pure Java library for manipulating RPM Package Manager packages.

There is a newer version: 1.2.10
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy