KernelException
using Castle.Core;
using System;
namespace Castle.MicroKernel
{
public interface IHandlerFactory
{
IHandler Create(ComponentModel model);
IHandler CreateForwarding(IHandler target, Type forwardedType);
}
}