Coverage Report - org.mule.model.resolvers.EntryPointNotFoundException
 
Classes in this File Line Coverage Branch Coverage Complexity
EntryPointNotFoundException
0%
0/2
N/A
1
 
 1  
 /*
 2  
  * $Id: EntryPointNotFoundException.java 20321 2010-11-24 15:21:24Z dfeist $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 package org.mule.model.resolvers;
 11  
 
 12  
 import org.mule.api.MuleException;
 13  
 import org.mule.config.i18n.CoreMessages;
 14  
 
 15  
 /**
 16  
  * Tis exception gets thrown by the {@link org.mule.model.resolvers.DefaultEntryPointResolverSet} if after trying
 17  
  * all entrypointResolvers it cannot fin the entrypoint on the service service
 18  
  */
 19  
 public class EntryPointNotFoundException extends MuleException
 20  
 {
 21  
     /** @param message the exception message */
 22  
     public EntryPointNotFoundException(String message)
 23  
     {
 24  0
         super(CoreMessages.failedToFindEntrypointForComponent(message));
 25  0
     }
 26  
 }