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

chaschev.lang.reflect.NoSuchMethodException Maven / Gradle / Ivy

There is a newer version: 1.4
Show newest version
package chaschev.lang.reflect;

/**
 * @author Andrey Chaschev [email protected]
 */
public class NoSuchMethodException extends RuntimeException {
    public NoSuchMethodException() {
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy