I need to throw an exception using reflection, any...
# announcements
r
I need to throw an exception using reflection, any examples? The exception type is a string
d
Maybe use
Class.forName
to get the class then get a constructor off of it and use that to create the instance? After that you should just be able to handle it normally.