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: divyaj
8    * Date: 2/19/14
9    * Time: 5:29 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class DocstoreDeserializeException extends DocstoreException {
13  
14      public DocstoreDeserializeException() {
15          super();
16      }
17  
18      public DocstoreDeserializeException(String message) {
19          super(message);
20      }
21  
22      public DocstoreDeserializeException(String errorCode, String errorMessage, TreeMap<String, String> errorParams) {
23          super(errorCode, errorMessage, errorParams);
24      }
25  
26      public DocstoreDeserializeException(String errorCode, String errorMessage) {
27          super(errorCode, errorMessage);
28      }
29  }