Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
EntryPointNotFoundException |
|
| 1.0;1 |
1 | /* | |
2 | * $Id: EntryPointNotFoundException.java 10529 2008-01-25 05:58:36Z dfeist $ | |
3 | * -------------------------------------------------------------------------------------- | |
4 | * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.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.MessageFactory; | |
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 | 6 | super(MessageFactory.createStaticMessage(message)); |
25 | 6 | } |
26 | } |