我正在尝试在这样的泛型类中创建一个常规的 RuntimeException:
public class SomeGenericClass<SomeType> {
public class SomeInternalException extends RuntimeException {
[...]
}
[...]
}
这段代码在RuntimeException
说这个词时给了我一个错误The generic class SomeGenericClass<SomeType>.SomeInternalException may not subclass java.lang.Throwable
。
这个 RuntimeException 与我的类是通用的有什么关系?