View Javadoc

1   package com.atlassian.user.search.query;
2   
3   import com.atlassian.user.EntityException;
4   
5   public class EntityQueryException extends EntityException
6   {
7       public EntityQueryException(){}
8   
9       public EntityQueryException(String message)
10      {
11          super(message);
12      }
13  
14      public EntityQueryException(Throwable cause)
15      {
16          super(cause);
17      }
18  
19      public EntityQueryException(String message, Throwable cause)
20      {
21          super(message, cause);
22      }
23  }