Coverage Report - org.mule.example.errorhandler.ExceptionHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
ExceptionHandler
N/A
N/A
1
 
 1  
 /*
 2  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 3  
  * The software in this package is published under the terms of the CPAL v1.0
 4  
  * license, a copy of which has been included with this distribution in the
 5  
  * LICENSE.txt file.
 6  
  */
 7  
 package org.mule.example.errorhandler;
 8  
 
 9  
 import java.util.Iterator;
 10  
 
 11  
 /**
 12  
  * <code>ExceptionHandler</code> TODO (document class)
 13  
  */
 14  
 public interface ExceptionHandler
 15  
 {
 16  
 
 17  
     public ErrorManager getErrorManager();
 18  
 
 19  
     public void setErrorManager(ErrorManager errorManager);
 20  
 
 21  
     public void onException(ErrorMessage message) throws HandlerException;
 22  
 
 23  
     public void registerException(Class exceptionClass);
 24  
 
 25  
     public void unRegisterException(Class exceptionClass);
 26  
 
 27  
     public Iterator getRegisteredClasses();
 28  
 
 29  
     public boolean isRegisteredFor(Class exceptionClass);
 30  
 
 31  
 }