1
2
3
4
5
6
7 package org.mule.api.security;
8
9 import org.mule.api.MuleException;
10 import org.mule.config.i18n.CoreMessages;
11
12
13
14
15
16
17 public class EncryptionStrategyNotFoundException extends MuleException
18 {
19
20
21
22 private static final long serialVersionUID = 3916371211189075139L;
23
24 public EncryptionStrategyNotFoundException(String strategyName)
25 {
26 super(CoreMessages.authNoEncryptionStrategy(strategyName));
27 }
28
29 public EncryptionStrategyNotFoundException(String strategyName, Throwable cause)
30 {
31 super(CoreMessages.authNoEncryptionStrategy(strategyName), cause);
32 }
33 }