1
2
3
4
5
6
7 package org.mule.transport.service;
8
9 import org.mule.config.i18n.MessageFactory;
10
11
12
13
14
15
16
17 public class TransportServiceNotFoundException extends TransportFactoryException
18 {
19
20
21
22 private static final long serialVersionUID = -8321406750213654479L;
23
24
25
26
27 public TransportServiceNotFoundException(String location)
28 {
29 super(MessageFactory.createStaticMessage(location));
30 }
31
32
33
34
35
36 public TransportServiceNotFoundException(String location, Throwable cause)
37 {
38 super(MessageFactory.createStaticMessage(location), cause);
39 }
40 }