1 package org.kuali.ole.docstore; 2 3 /** 4 * Created by IntelliJ IDEA. 5 * User: Pranitha 6 * Date: 4/6/12 7 * Time: 3:20 PM 8 * To change this template use File | Settings | File Templates. 9 */ 10 public class OleException extends Exception { 11 12 public OleException() { 13 super(); 14 } 15 16 public OleException(String message) { 17 super(message); 18 } 19 20 }