]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.enterprise/src/org/argeo/osgi/useradmin/UserDirectoryException.java
Change the approach for releases
[lgpl/argeo-commons.git] / org.argeo.enterprise / src / org / argeo / osgi / useradmin / UserDirectoryException.java
1 package org.argeo.osgi.useradmin;
2
3 import org.osgi.service.useradmin.UserAdmin;
4
5 /**
6 * Exceptions related to Argeo's implementation of OSGi {@link UserAdmin}
7 * service.
8 */
9 public class UserDirectoryException extends RuntimeException {
10 private static final long serialVersionUID = 1419352360062048603L;
11
12 public UserDirectoryException(String message) {
13 super(message);
14 }
15
16 public UserDirectoryException(String message, Throwable e) {
17 super(message, e);
18 }
19 }