1 /*2 * Copyright (c) 2002-2003 by OpenSymphony3 * All rights reserved.4 */5 package com.opensymphony.workflow;6 7 8 /**9 * @author Hani Suleiman (hani@formicary.net)10 * Date: May 10, 200311 * Time: 11:29:45 AM12 */13 public class StoreException extends WorkflowException {14 //~ Constructors ///////////////////////////////////////////////////////////15 16 public StoreException(String s) {17 super(s);18 }19 20 public StoreException(String s, Throwable ex) {21 super(s, ex);22 }23 24 public StoreException(Throwable ex) {25 super(ex);26 }27 }28