src/org/jetbrains/tfsIntegration/exceptions/IdentityNotFoundException.java [31:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public IdentityNotFoundException(AxisFault cause) {
    super(cause);
    if (cause.getDetail() != null) {
      myIdentityName = cause.getDetail().getAttributeValue(new QName("IdentityName"));
    }
    else {
      myIdentityName = null;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/org/jetbrains/tfsIntegration/exceptions/IllegalIdentityException.java [31:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public IllegalIdentityException(AxisFault cause) {
    super(cause);
    if (cause.getDetail() != null) {
      myIdentityName = cause.getDetail().getAttributeValue(new QName("IdentityName"));
    }
    else {
      myIdentityName = null;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



