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.model.resolvers; 8 9 import org.mule.api.MuleException; 10 import org.mule.config.i18n.CoreMessages; 11 12 /** 13 * Tis exception gets thrown by the {@link org.mule.model.resolvers.DefaultEntryPointResolverSet} if after trying 14 * all entrypointResolvers it cannot fin the entrypoint on the service service 15 */ 16 public class EntryPointNotFoundException extends MuleException 17 { 18 /** @param message the exception message */ 19 public EntryPointNotFoundException(String message) 20 { 21 super(CoreMessages.failedToFindEntrypointForComponent(message)); 22 } 23 }