예제 #1
0
 public BusinessException(Enum errorEnumValue, string errorMessage)
 {
     this.ExceptionData = new ExceptionData((long)Convert.ToInt32((object)errorEnumValue), errorMessage);
 }
예제 #2
0
 public BusinessException(long errorCode, string errorMessage)
 {
     this.ExceptionData = new ExceptionData(errorCode, errorMessage);
 }