for example, the parent class of a normal class IOException is as follows:
Class<?> c = IOException.class;
System.out.println("IOException:"+c.getSuperclass());
but I implement this function: the IOException is saved as a string, and then how do I find the parent class of the class through that string? The last line of the following code indicates an error and cannot be implemented.
for guidance, thank you!