View Javadoc

1   /*
2    * Copyright (C) 2004 TiongHiang Lee
3    *
4    * This library is free software; you can redistribute it and/or
5    * modify it under the terms of the GNU Lesser General Public
6    * License as published by the Free Software Foundation; either
7    * version 2.1 of the License, or (at your option) any later version.
8    *
9    * This library is distributed in the hope that it will be useful,
10   * but WITHOUT ANY WARRANTY; without even the implied warranty of
11   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12   * Lesser General Public License for more details.
13   *
14   * You should have received a copy of the GNU Lesser General Public
15   * License along with this library; if not,  write to the Free Software
16   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17   *
18   * Email: thlee@onemindsoft.org
19   */
20  package org.onemind.commons.invoke;
21  
22  
23  /***
24   * An exception due to invocation
25   * @author TiongHiang Lee (thlee@onemindsoft.org)
26   * @version $Id: InvocationException.java,v 1.2 2004/08/26 16:08:23 thlee Exp $ $Name:  $
27   */
28  public class InvocationException extends Exception
29  {
30      /***
31       * {@inheritDoc}
32       */
33      public InvocationException()
34      {
35          super();
36      }
37  
38      /***
39       * {@inheritDoc}
40       */
41      public InvocationException(String message)
42      {
43          super(message);
44      }
45  
46      /***
47       * {@inheritDoc}
48       */
49      public InvocationException(Throwable cause)
50      {
51          super(cause);
52      }
53  
54      /***
55       * {@inheritDoc}
56       */
57      public InvocationException(String message, Throwable cause)
58      {
59          super(message, cause);
60      }
61  }