| Home >> All >> mill >> [ a3 Javadoc ] |
Source code: mill/a3/AuthException.java
1 package mill.a3; 2 // Authentication, Authorization, Audit - a3 3 4 5 public class AuthException extends Exception 6 { 7 8 public AuthException() { 9 super(); 10 } 11 12 public AuthException(String s) { 13 super(s); 14 } 15 16 } 17