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

net.sf.juffrou.reflect.error.CannotWrapInterfaceException Maven / Gradle / Ivy

Go to download

Performant java bean access through property names. If you are serious about bean handling, this is for you.

There is a newer version: 2.1.9
Show newest version
package net.sf.juffrou.reflect.error;

public class CannotWrapInterfaceException extends AbstractRuntimeException {

	private static final long serialVersionUID = 8278315532746800212L;

	public CannotWrapInterfaceException() {
		super();
	}

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

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

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

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy