Pharo Smalltalk - Message forwarding, is it possible to intercept a message and redirect it to another Object (instance)?
In Objective-C there's forwardInvocation: that gets called right before an exception is thrown so you can do something about the message you received and know nothing about.
Is there something similar in Smalltalk do I can redirect a message to a delegate?