Example #1
0
 public EVAResponse(int Code)
 {
     this.p_Code     = Code;
     this.p_Message  = System.String.Empty;
     this.p_Severity = EVAErrorSeverity.PermanentFailure;
 }
Example #2
0
 public EVAResponse(int Code, string Message)
 {
     this.p_Code     = Code;
     this.p_Message  = Message;
     this.p_Severity = EVAErrorSeverity.PermanentFailure;
 }
Example #3
0
 public EVAResponse(int Code, EVAErrorSeverity Severity)
 {
     this.p_Code     = Code;
     this.p_Message  = System.String.Empty;
     this.p_Severity = Severity;
 }
Example #4
0
 public EVAResponse(int Code, string Message, EVAErrorSeverity Severity)
 {
     this.p_Code     = Code;
     this.p_Message  = Message;
     this.p_Severity = Severity;
 }