org.redline_rpm.changelog.ChangelogParseException 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.changelog;
/**
* Base Class of all exceptions thrown by the ChangeLogParser
*
* Copyright (c) 2007-2016 FreeCompany
*/
public abstract class ChangelogParseException extends Exception
implements ParserExceptionClient{
public ChangelogParseException(String message) {
super(message);
}
}