View Javadoc
1   package org.kuali.ole.docstore.common.exception;
2   
3   import java.util.TreeMap;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: sambasivam
8    * Date: 12/17/13
9    * Time: 12:41 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class DocstoreSearchException extends DocstoreException {
13  
14      public DocstoreSearchException() {
15          super();
16      }
17  
18      public DocstoreSearchException(String message) {
19          super(message);
20      }
21  
22      public DocstoreSearchException(Exception e) {
23          super(e);
24          setErrorMessage(e.getMessage());
25      }
26  
27      public DocstoreSearchException(String erroeCode,String errorMessage, TreeMap<String, String> errorParams) {
28          super( erroeCode,errorMessage, errorParams);
29      }
30  
31      public  DocstoreSearchException(String erroeCode,String errorMessage) {
32          super( erroeCode,errorMessage);
33      }
34  }