1 package org.kuali.ole.docstore.common.exception;
2
3 import java.util.Map;
4 import java.util.TreeMap;
5
6
7
8
9
10
11
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
25 public DocstoreValidationException(String erroeCode, String errorMessage, TreeMap<String, String> errorParams) {
26 super(erroeCode, errorMessage, errorParams);
27 }
28
29 public DocstoreValidationException(String erroeCode, String errorMessage) {
30 super(erroeCode, errorMessage);
31 }
32 }