I have an enum and try to get another Class with Class.forName(example)
However, It displays ClassNotFoundException. My question is this, how can I throw an exception to solve this?
Example Code
enum Example {
PLUS("Plus", new Class<?>[]{Class.forName("com.directory.File")})
}