01 package com.technoetic.xplanner.security; 02 03 /** 04 * This exception should be used when a user's identity can't be verified. 05 */ 06 public class AuthenticationException extends Exception { Rate07 public AuthenticationException() { 08 } 09 10 public AuthenticationException(String message) { Rate11 super(message); 12 } 13 14 public AuthenticationException(String message, Throwable cause) { Rate15 super(message, cause); 16 } 17 18 public AuthenticationException(Throwable cause) { Rate19 super(cause); 20 } 21 }