KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > umo > security > EncryptionStrategyNotFoundException


1 /*
2  * $Id: EncryptionStrategyNotFoundException.java 3798 2006-11-04 04:07:14Z aperepel $
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 MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.umo.security;
12
13 import org.mule.config.i18n.Message;
14 import org.mule.config.i18n.Messages;
15 import org.mule.umo.UMOException;
16
17 /**
18  * <code>EncryptionStrategyNotFoundException</code> is thrown by the
19  * UMOSecurityManager when an encryption scheme is set in a property or header that
20  * has not been registered witrh the manager
21  *
22  * @author <a HREF="mailto:ross.mason@symphonysoft.com">Ross Mason</a>
23  * @version $Revision: 3798 $
24  */

25 public class EncryptionStrategyNotFoundException extends UMOException
26 {
27     /**
28      * Serial version
29      */

30     private static final long serialVersionUID = 3916371211189075139L;
31
32     public EncryptionStrategyNotFoundException(String JavaDoc strategyName)
33     {
34         super(new Message(Messages.AUTH_NO_ENCRYPTION_STRATEGY_X, strategyName));
35     }
36
37     public EncryptionStrategyNotFoundException(String JavaDoc strategyName, Throwable JavaDoc cause)
38     {
39         super(new Message(Messages.AUTH_NO_ENCRYPTION_STRATEGY_X, strategyName), cause);
40     }
41 }
42
Popular Tags