{
private final InvalidArgumentTypeException error;
InvalidTypes(String overloadName, String infix, boolean associative, TClass operand0, TClass operand1)
{
super(overloadName, infix, associative, operand0, operand1);
error = new InvalidArgumentTypeException(String.format("Invald Argument Types: %s(<%s>, <%s>)",
overloadName,
operand0,
operand1));
}