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

kalang.runtime.dynamic.MethodAmbiguousException Maven / Gradle / Ivy

There is a newer version: 1.11.0
Show newest version

package kalang.runtime.dynamic;

import java.lang.reflect.Method;
import java.util.Arrays;

/**
 *
 * @author Kason Yang 
 */
public class MethodAmbiguousException extends Exception{
    
    protected Method[] ambiguousMethods;

    public MethodAmbiguousException(Method[] ambiguousMethods) {
        this.ambiguousMethods = ambiguousMethods;
    }

    @Override
    public String toString() {
        return "method is ambiguous:" + Arrays.toString(ambiguousMethods);
    }
    
    

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy