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