public ValidationException(IViolation violation)
 {
     this.Report = new ValidationReport(new[] { violation });
 }
 public ValidationException(ValidationReport report)
 {
     this.Report = report;
 }
 protected override void When()
 {
     this.report = Binder.Bind(this.resource, new[] { this.collection });
 }
		internal ValidationException(ValidationReport report)
		{
			this.Report = report;
		}
		internal ValidationException(IViolation violation)
		{
			this.Report = new ValidationReport(new[] {violation});
		}
 public ValidationException(ValidationReport report)
 {
     this.Report = report;
 }