View Javadoc

1   /* ***************************************************************************
2    * This library is part of INFONOVA OpenCms Modules.
3    * Common Modules for the Open Source Content Management System: OpenCms.
4    * 
5    * Copyright (c) 2010 INFONOVA GmbH, Austria.
6    *
7    * This library is free software; you can redistribute it and/or
8    * modify it under the terms of the GNU Lesser General Public
9    * License as published by the Free Software Foundation; either
10   * version 2.1 of the License, or (at your option) any later version.
11   *
12   * This library is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * Lesser General Public License for more details.
16   * 
17   * For further information about INFONOVA GmbH, Austria, please
18   * see the company website: http://www.infonova.at/
19   *
20   * For further information about INFONOVA OpenCms Modules, please see the
21   * project website: http://sourceforge.net/projects/bp-cms-commons/
22   * 
23   * You should have received a copy of the GNU Lesser General Public
24   * License along with this library; if not, write to the Free Software
25   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26   *****************************************************************************/
27  package at.infonova.opencms.modules.springmanager.tools;
28  
29  import org.springframework.transaction.TransactionException;
30  
31  /**
32   * 
33   * @see SessionUtil
34   * @author harald brabenetz
35   *
36   */
37  public class InSessionExecutionException extends TransactionException{
38  
39      public InSessionExecutionException(String arg0, Throwable arg1) {
40          super(arg0, arg1);
41      }
42  
43      public InSessionExecutionException(String arg0) {
44          super(arg0);
45      }
46  
47      /**
48       * 
49       */
50      private static final long serialVersionUID = -2942677168308118215L;
51  
52  }