View Javadoc

1   /*
2    * $Id: PersistenceException.java,v 1.2 2004/07/01 11:16:22 nw Exp $
3    * 
4    * Created on 19-Apr-2004 by Paul Harrison (pah@jb.man.ac.uk)
5    *
6    * Copyright 2004 AstroGrid. All rights reserved.
7    *
8    * This software is published under the terms of the AstroGrid 
9    * Software License version 1.2, a copy of which has been included 
10   * with this distribution in the LICENSE.txt file.  
11   *
12   */ 
13  
14  package org.astrogrid.applications.manager.persist;
15  
16  import org.astrogrid.applications.CeaException;
17  
18  /***
19   * Indicates a problem with the  persistence engine.
20   * @author Paul Harrison (pah@jb.man.ac.uk) 19-Apr-2004
21   * @version $Name: HEAD $
22   * @since iteration5
23   */
24  public class PersistenceException extends CeaException {
25  
26     /***
27      * @param message
28      */
29     public PersistenceException(String message) {
30        super(message);
31     }
32  
33     /***
34      * @param message
35      * @param cause
36      */
37     public PersistenceException(String message, Throwable cause) {
38        super(message, cause);
39     }
40  
41  }