This commit is contained in:
Alexey Andreev 2022-02-01 08:47:27 +03:00
parent 3728645665
commit 1c04cd2ba6

View File

@ -81,6 +81,6 @@ public abstract class TEnum<E extends TEnum<E>> extends TObject implements TComp
return constant;
}
}
throw new TIllegalArgumentException("Enum " + enumType + " does not have the " + name + "constant");
throw new TIllegalArgumentException("Enum " + enumType + " does not have the " + name + " constant");
}
}