1 package org.springframework.security; 2 3 /** 4 * Base class for authentication exceptions which are caused by a particular 5 * user account status (locked, disabled etc). 6 * 7 * @author Luke Taylor 8 * @version $Id: AccountStatusException.java 2653 2008-02-18 20:18:40Z luke_t $ 9 */ 10 public abstract class AccountStatusException extends AuthenticationException { 11 public AccountStatusException(String msg) { 12 super(msg); 13 } 14 15 public AccountStatusException(String msg, Throwable t) { 16 super(msg, t); 17 } 18 19 protected AccountStatusException(String msg, Object extraInformation) { 20 super(msg, extraInformation); 21 } 22 }