public PowerLineEndPointExecutionResult(PowerLinExecutionResultType resultType, PowerLineContext context, Exception exception, PowerLineEndPoint endpoint, PowerLineHandler handler)
 {
     this.ResultType = resultType;
     this.Context    = context;
     this.Exception  = exception;
     this.EndPoint   = endpoint;
     this.Handler    = handler;
 }
 public PowerLineEndPointExecutionResult(PowerLineContext context, PowerLinExecutionResultType resultType, PowerLineEndPoint endPoint, PowerLineHandler handler) : this(resultType, context, null, endPoint, handler)
 {
 }