01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow;
06:
07: /**
08: * @author Hani Suleiman (hani@formicary.net)
09: * Date: May 10, 2003
10: * Time: 11:29:45 AM
11: */
12: public class StoreException extends WorkflowException {
13: //~ Constructors ///////////////////////////////////////////////////////////
14:
15: public StoreException(String s) {
16: super (s);
17: }
18:
19: public StoreException(String s, Throwable ex) {
20: super (s, ex);
21: }
22:
23: public StoreException(Throwable ex) {
24: super(ex);
25: }
26: }
|