1 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 25 public class EncryptionStrategyNotFoundException extends UMOException 26 { 27 30 private static final long serialVersionUID = 3916371211189075139L; 31 32 public EncryptionStrategyNotFoundException(String strategyName) 33 { 34 super(new Message(Messages.AUTH_NO_ENCRYPTION_STRATEGY_X, strategyName)); 35 } 36 37 public EncryptionStrategyNotFoundException(String strategyName, Throwable cause) 38 { 39 super(new Message(Messages.AUTH_NO_ENCRYPTION_STRATEGY_X, strategyName), cause); 40 } 41 } 42 | Popular Tags |