1 17 package org.alfresco.repo.security.authentication; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 27 public class AuthenticationException extends AlfrescoRuntimeException 28 { 29 30 33 private static final long serialVersionUID = 3546647620128092466L; 34 35 public AuthenticationException(String msg) 36 { 37 super(msg); 38 } 39 40 public AuthenticationException(String msg, Throwable cause) 41 { 42 super(msg, cause); 43 } 44 } 45 | Popular Tags |