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

org.redline_rpm.changelog.NoInitialAsteriskException 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.changelog;

/**
 * This exception is when a change log entry does not begin with an asterisk.
 * In actuality, this can only happen at the beginning of the Changelog file
 * 
 * Copyright (c) 2007-2016 FreeCompany 
 */
public class NoInitialAsteriskException extends ChangelogParseException {

	public NoInitialAsteriskException() {
		super(MUST_START_WITH_ASTERISK);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy