public CommandExecutorEventArgs(CommandExecutorContextBase context)
		{
			if(context == null)
				throw new ArgumentNullException("context");

			_context = context;
		}
        public CommandExecutorEventArgs(CommandExecutorContextBase context)
        {
            if (context == null)
            {
                throw new ArgumentNullException("context");
            }

            _context = context;
        }
		public CommandExecutorExecutingEventArgs(CommandExecutorContextBase context, bool cancel = false) : base(context)
		{
			_cancel = cancel;
		}
 public CommandExecutorExecutedEventArgs(CommandExecutorContextBase context) : base(context)
 {
 }
 public CommandExecutorExecutingEventArgs(CommandExecutorContextBase context, bool cancel = false) : base(context)
 {
     _cancel = cancel;
 }
		public CommandExecutorExecutedEventArgs(CommandExecutorContextBase context) : base(context)
		{
		}