1
2
3
4
5
6
7
8
9
10
11 package org.mule.api.security;
12
13 import org.mule.api.MuleEvent;
14 import org.mule.api.endpoint.ImmutableEndpoint;
15 import org.mule.config.i18n.Message;
16
17
18
19
20
21 public class CredentialsNotSetException extends UnauthorisedException
22 {
23
24
25
26 private static final long serialVersionUID = -6271648179641734580L;
27
28 public CredentialsNotSetException(Message message, MuleEvent event)
29 {
30 super(message, event);
31 }
32
33 public CredentialsNotSetException(Message message, MuleEvent event, Throwable cause)
34 {
35 super(message, event, cause);
36 }
37
38 public CredentialsNotSetException(MuleEvent event, SecurityContext context,
39 ImmutableEndpoint endpoint, EndpointSecurityFilter filter)
40 {
41 super(event, context, endpoint, filter);
42 }
43 }