View Javadoc

1   /*
2    * Copyright (C) 2007 ETH Zurich
3    *
4    * This file is part of Fosstrak (www.fosstrak.org).
5    *
6    * Fosstrak is free software; you can redistribute it and/or
7    * modify it under the terms of the GNU Lesser General Public
8    * License version 2.1, as published by the Free Software Foundation.
9    *
10   * Fosstrak is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13   * Lesser General Public License for more details.
14   *
15   * You should have received a copy of the GNU Lesser General Public
16   * License along with Fosstrak; if not, write to the Free
17   * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18   * Boston, MA  02110-1301  USA
19   */
20  
21  package org.fosstrak.epcis.repository;
22  
23  /**
24   * This Exception is thrown by the different modules to indicate problems while
25   * processing capture or query requests.
26   * 
27   * @author Marco Steybe
28   */
29  public class InternalBusinessException extends Exception {
30  
31      private static final long serialVersionUID = 1390149913827592956L;
32  
33      public InternalBusinessException() {
34          super();
35      }
36  
37      public InternalBusinessException(String message) {
38          super(message);
39      }
40  
41      public InternalBusinessException(Throwable cause) {
42          super(cause);
43      }
44  
45      public InternalBusinessException(String message, Throwable cause) {
46          super(message, cause);
47      }
48  }