/// <inheritdoc />
        public void AddInterceptor(MethodInfo method, IInterceptor interceptor)
        {
            if (method == null)
            {
                throw new ArgumentNullException(@"method");
            }
            if (interceptor == null)
            {
                throw new ArgumentNullException(@"interceptor");
            }

            StaticInterceptorStub.AddInterceptor(method, interceptor);
        }