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