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

net.sourceforge.retroweaver.RetroWeaverException Maven / Gradle / Ivy

Go to download

Retroweaver is a tool, which converts Java 5 (or 6) compliant class files into Java 1.x compliant class files. The jar file retroweaver.jar contains both the class processor (which may be used at compile time) and the runtime classes. Additionally there is the jar file retroweaver-rt.jar (which contains the runtime classes only).

The newest version!
package net.sourceforge.retroweaver;

public class RetroWeaverException extends RuntimeException {

	public RetroWeaverException(String message) {
		super(message);
	}

	public RetroWeaverException(String message, Throwable cause) {
		super(message, cause);
	}

	public RetroWeaverException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy