aboutsummaryrefslogtreecommitdiff
path: root/javaparser-symbol-solver-logic/src/main/java/com/github/javaparser/symbolsolver/logic/ConfilictingGenericTypesException.java
blob: 684ffdba3dfec311ed41b7674a06d3cc83406aaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.github.javaparser.symbolsolver.logic;

import com.github.javaparser.resolution.types.ResolvedType;

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

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