Coverage Report - net.admin4j.dao.xml.DefaultExceptionListener
 
Classes in this File Line Coverage Branch Coverage Complexity
DefaultExceptionListener
66%
6/9
N/A
1
 
 1  
 /*
 2  
  * This software is licensed under the Apache License, Version 2.0
 3  
  * (the "License") agreement; you may not use this file except in compliance with
 4  
  * the License.  You may obtain a copy of the License at
 5  
  * 
 6  
  *      http://www.apache.org/licenses/LICENSE-2.0
 7  
  * 
 8  
  * Unless required by applicable law or agreed to in writing, software
 9  
  * distributed under the License is distributed on an "AS IS" BASIS,
 10  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 11  
  * See the License for the specific language governing permissions and
 12  
  * limitations under the License.
 13  
  */
 14  
 package net.admin4j.dao.xml;
 15  
 
 16  
 import java.beans.ExceptionListener;
 17  
 
 18  
 import net.admin4j.deps.commons.lang3.Validate;
 19  
 
 20  
 import org.slf4j.Logger;
 21  
 import org.slf4j.LoggerFactory;
 22  
 
 23  
 public class DefaultExceptionListener implements ExceptionListener {
 24  
     
 25  6
     private static Logger logger = LoggerFactory.getLogger(DefaultExceptionListener.class);
 26  
     private String label;
 27  21
     private boolean error = false;
 28  
     
 29  21
     public DefaultExceptionListener(String label) {
 30  
         Validate.notEmpty(label, "Null or blank label not allowed.");
 31  21
         this.label = label;
 32  21
     }
 33  
 
 34  
     public void exceptionThrown(Exception e) {
 35  0
         logger.error("Read error for " + label, e);
 36  0
         error = true;
 37  0
     }
 38  
 
 39  
     public boolean isError() {
 40  9
         return error;
 41  
     }
 42  
 
 43  
 }