1 package com.atlassian.user;
2
3 /**
4 * All checked exceptions eventuating from Atlassian User should extend this one.
5 */
6 public class EntityException extends Exception
7 {
8 public EntityException()
9 {
10 }
11
12 public EntityException(String message)
13 {
14 super(message);
15 }
16
17 public EntityException(Throwable cause)
18 {
19 super(cause);
20 }
21
22 public EntityException(String message, Throwable cause)
23 {
24 super(message, cause);
25 }
26 }