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

jodd.methref.MethrefException Maven / Gradle / Ivy

Go to download

Jodd Proxetta is the fastest proxy creator with unique approach for defying pointcuts and advices.

There is a newer version: 6.0.1
Show newest version
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.methref;

import jodd.proxetta.ProxettaException;

/**
 * Methref exception.
 */
public class MethrefException extends ProxettaException {

	public MethrefException(Throwable throwable) {
		super(throwable);
	}

	public MethrefException(String string) {
		super(string);
	}

	public MethrefException(String string, Throwable throwable) {
		super(string, throwable);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy