ExceptionLimit exceptionCT = new ExceptionLimit("Total");
exceptionCT.setDomain("domainC").setError(20).setWarning(10);
exceptionLimitMap.put(exceptionCT.getDomain(), exceptionCT);
// exception exclude
ExceptionExclude exceptionAll = new ExceptionExclude("All");
exceptionAll.setDomain("domainA");
exceptionExcludeMap.put(exceptionAll.getDomain() + "_" + exceptionAll.getId(), exceptionAll);
ExceptionExclude exceptionCAExclude = new ExceptionExclude("exceptionA");
exceptionCAExclude.setDomain("domainC");
exceptionExcludeMap.put(exceptionCAExclude.getDomain() + "_" + exceptionCAExclude.getId(), exceptionCAExclude);
}