net.sf.juffrou.error.CannotWrapInterfaceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of juffrou-reflect Show documentation
Show all versions of juffrou-reflect Show documentation
Performant java bean access through property names. If you are serious about bean handling, this is for you.
package net.sf.juffrou.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);
}
}