Class Proxy

java.lang.Object
org.springframework.cglib.proxy.Proxy
All Implemented Interfaces:
Serializable

public class Proxy extends Object implements Serializable
This class is meant to be used as replacement for java.lang.reflect.Proxy under JDK 1.2. There are some known subtle differences:
  • The exceptions returned by invoking getExceptionTypes on the Method passed to the invoke method are the exact set that can be thrown without resulting in an UndeclaredThrowableException being thrown.
  • UndeclaredThrowableException is used instead of java.lang.reflect.UndeclaredThrowableException.

See Also: