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

org.fiolino.common.reflection.AmbiguousMethodException Maven / Gradle / Ivy

Go to download

General structure to easily create dynamic logic via MethodHandles and others.

There is a newer version: 1.0.10
Show newest version
package org.fiolino.common.reflection;

/**
 * This is thrown when there were multiple methods detected that match with same comparison rank.
 * 

* Created by Kuli on 6/2/2016. */ public class AmbiguousMethodException extends RuntimeException { private static final long serialVersionUID = -2883393890604050516L; public AmbiguousMethodException() { } public AmbiguousMethodException(String message) { super(message); } public AmbiguousMethodException(String message, Throwable cause) { super(message, cause); } public AmbiguousMethodException(Throwable cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy