package net.sf.clipsrules.jni; import java.util.List; import java.util.ArrayList; public class CLIPSLoadException extends CLIPSException { private List errorList; public CLIPSLoadException() { super(); errorList = new ArrayList(); } public CLIPSLoadException(String message) { super(message); errorList = new ArrayList(); } public CLIPSLoadException(String message, Throwable cause) { super(message, cause); errorList = new ArrayList(); } public CLIPSLoadException(Throwable cause) { super(cause); errorList = new ArrayList(); } public CLIPSLoadException( List list) { super(); errorList = new ArrayList(list); } public CLIPSLoadException(String message, List list) { super(message); errorList = new ArrayList(list); } public CLIPSLoadException(String message, Throwable cause, List list) { super(message, cause); errorList = new ArrayList(list); } public CLIPSLoadException(Throwable cause, List list) { super(cause); errorList = new ArrayList(list); } public List getErrorList() { return errorList; } }