source: trunk/greenstone3-extensions/gsdl-as/src/org/greenstone/gsdlas/users/UserManagementException.java@ 8738

Last change on this file since 8738 was 8738, checked in by schweer, 19 years ago

user authentication works; user information and subscriptions/predicates are stored to thedatabase

  • Property svn:keywords set to Author Date Id Revision
File size: 644 bytes
Line 
1/*
2 * Created on Dec 3, 2004
3 *
4 * TODO To change the template for this generated file go to
5 * Window - Preferences - Java - Code Style - Code Templates
6 */
7package org.greenstone.gsdlas.users;
8
9
10/**
11 * @author andrea
12 *
13 * TODO To change the template for this generated type comment go to
14 * Window - Preferences - Java - Code Style - Code Templates
15 */
16public class UserManagementException extends Exception {
17
18 /**
19 * @param e
20 */
21 public UserManagementException(String message, Throwable cause) {
22 super(message, cause);
23 }
24
25 public UserManagementException(String message) {
26 super(message);
27 }
28
29}
Note: See TracBrowser for help on using the repository browser.