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

me.tomassetti.symbolsolver.model.declarations.MethodAmbiguityException Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package me.tomassetti.symbolsolver.model.declarations;

/**
 * It is not possible to decide how to resolve a method invocation.
 *
 * @author Federico Tomassetti
 */
public class MethodAmbiguityException extends RuntimeException {

    public MethodAmbiguityException(String description) {
        super(description);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy