A citation from "The art of unit testing" book:
In Rhino Mocks, strict mocks are created by calling the StrictMock method. Unexpected method call exceptions will always be thrown, even if your test contains a global try-catch clause, which you’d think would catch such an exception thrown from the isolation framework.
So how exactly can I implement this behaviour in the program of my own?