// register yourself to listen to all events declared
controller.getInterceptorService()
.registerInterceptor( interceptorObject=this );
// register yourself to listen to all events declared and register new events: onError, onLogin
controller.getInterceptorService()
.registerInterceptor( interceptorObject=this, customPoints="onError,onLogin" );
// Register yourself to listen to the onException event ONLY
controller.getInterceptorService()
.registerInterceptionPoint(
interceptorKey="MyService",