aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-symbol-solver-testing/src/test/resources/javasymbolsolver_0_6_0/src/java-symbol-solver-logic/com/github/javaparser/symbolsolver/logic/ConfilictingGenericTypesException.java
blob: 573556cb94c86f8c97fedbb2d55071842eac0a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.github.javaparser.symbolsolver.logic;

import com.github.javaparser.symbolsolver.model.typesystem.Type;

/**
 * @author Federico Tomassetti
 */
public class ConfilictingGenericTypesException extends RuntimeException {

    public ConfilictingGenericTypesException(Type formalType, Type actualType) {
        super(String.format("No matching between %s (formal) and %s (actual)", formalType, actualType));
    }
}