Beispiel #1
0
 public ErrorDetail(ErrorTypeInfo type)
 {
     Type    = type;
     HasData = false;
 }
Beispiel #2
0
 public ErrorDetail(ErrorTypeInfo type, object data)
 {
     Type    = type;
     Data    = data;
     HasData = true;
 }