Exemplo n.º 1
0
 public CustomException(CustomExceptionTypeEnum customExceptionType, string customMessage, object customData)
     : base(customMessage)
 {
     this.CustomExceptionType = customExceptionType;
     this.CustomMessage       = customMessage;
     this.CustomData          = customData;
 }
Exemplo n.º 2
0
 public CustomException(CustomExceptionTypeEnum customExceptionType, string customMessage)
     : this(customExceptionType, customMessage, null)
 {
 }
Exemplo n.º 3
0
 public CustomException(CustomExceptionTypeEnum customExceptionType)
     : this(customExceptionType, "")
 {
 }