01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.http.protocol;
07:
08: import org.openrdf.repository.RepositoryException;
09:
10: public class UnauthorizedException extends RepositoryException {
11:
12: private static final long serialVersionUID = 4322677542795160482L;
13:
14: public UnauthorizedException() {
15: super ();
16: }
17:
18: public UnauthorizedException(String msg) {
19: super (msg);
20: }
21:
22: public UnauthorizedException(Throwable t) {
23: super (t);
24: }
25:
26: public UnauthorizedException(String msg, Throwable t) {
27: super(msg, t);
28: }
29: }
|