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 {
11 public UserResolutionException(final String message, final Throwable cause)
12 {
13 super(message, cause);
14 }
15
16 public UserResolutionException(final Throwable cause)
17 {
18 super(cause);
19 }
20
21 public UserResolutionException(final String message)
22 {
23 super(message);
24 }
25 }