1 64 65 package com.jcorporate.expresso.services.validation; 66 67 import com.jcorporate.expresso.kernel.exception.ChainedException; 68 69 70 76 public class AuthValidationException 77 extends ChainedException { 78 private String message = null; 79 80 83 public AuthValidationException() { 84 super(); 85 } 86 87 90 public AuthValidationException(String s) { 91 super(s); 92 } 93 94 98 public AuthValidationException(String s, String newMessage) { 99 super(s); 100 message = newMessage; 101 } 102 103 107 public AuthValidationException(String s, Throwable t) { 108 super(s, t); 109 } 110 111 114 public AuthValidationException(Throwable t) { 115 super(t); 116 } 117 118 121 public String getMessage() { 122 return message; 123 } 124 125 } 126 127 | Popular Tags |