Example #1
0
 public LJPException(string sMsg, LJPExceptionType ljpExceptionType, int code = 0, string data = "") : base(sMsg)
 {
     this.LJPExceptionType = ljpExceptionType;
     this.Code             = code;
     this.SerializedData   = data;
 }
Example #2
0
 public LJPExceptionDTO(string message, LJPExceptionType genericException)
 {
     this.Message = message;
     this.IClientLJPExceptionType = (int)genericException;
 }