I'm trying to make a URLClassLoader which behaves as follows:
- If asked for a class whose name is in a given set of inclusions, load it as normal
- Otherwise, return a dummy class of my choice
How should I go about this? My attempt at doing this didn't work - see my earlier question for details.