1 17 package org.alfresco.repo.node.integrity; 18 19 import java.util.List ; 20 21 import org.alfresco.error.AlfrescoRuntimeException; 22 23 28 public class IntegrityException extends AlfrescoRuntimeException 29 { 30 private static final long serialVersionUID = -5036557255854195669L; 31 32 private List <IntegrityRecord> records; 33 34 public IntegrityException(List <IntegrityRecord> records) 35 { 36 super("Integrity failure"); 37 this.records = records; 38 } 39 40 43 public List <IntegrityRecord> getRecords() 44 { 45 return records; 46 } 47 } 48 | Popular Tags |