1 package com.atlassian.sal.api.user;
2
3 /**
4 * Thrown if there is a problem when trying to resolve a username to a user, such as a failure in accessing an external
5 * user store.
6 *
7 * @since 2.0
8 */
9 public class UserResolutionException extends RuntimeException {
10 public UserResolutionException(final String message, final Throwable cause) {
11 super(message, cause);
12 }
13
14 public UserResolutionException(final Throwable cause) {
15 super(cause);
16 }
17
18 public UserResolutionException(final String message) {
19 super(message);
20 }
21 }