source: ComponentRegistry/trunk/ComponentRegistry/src/main/java/clarin/cmdi/componentregistry/UserUnauthorizedException.java @ 207

Last change on this file since 207 was 207, checked in by patdui, 14 years ago
  • addd Basic security in webapp
  • Added Delete functionality in registry
  • Made POST and DELETE use authorisation
File size: 368 bytes
Line 
1package clarin.cmdi.componentregistry;
2
3public class UserUnauthorizedException extends Exception {
4
5    public UserUnauthorizedException(String message) {
6        super(message);
7    }
8
9    public UserUnauthorizedException(String message, Throwable t) {
10        super(message, t);
11    }
12
13    /**
14     *
15     */
16    private static final long serialVersionUID = 1L;
17
18}
Note: See TracBrowser for help on using the repository browser.