public Interceptor(IHandlerException phandlerException)
 {
     handlerException = phandlerException;
 }
 //
 public ImplEnvironment()
 {
     handlerLog       = new ImplHandlerLog(this);
     handlerException = new ImplHandlerException(this, handlerLog);
     _stockRemain     = new ToolStockRemain(this);
 }
 public Interceptor()
 {
     handlerException = FactoryHandlerException.Create();
 }
 public void setExceptionHandler(IHandlerException pHandler)
 {
     handlerException = pHandler;
 }