1 package org.kuali.ole.docstore.util;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: ND6967
6 * Date: 2/5/13
7 * Time: 6:11 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class ItemExistsException extends Exception {
11 public ItemExistsException() {
12 super();
13 }
14
15 public ItemExistsException(String message) {
16 super(message);
17 }
18
19 public ItemExistsException(String message, Throwable cause) {
20 super(message, cause);
21 }
22
23 public ItemExistsException(Throwable cause) {
24 super(cause);
25 }
26 }