View Javadoc
1   /*
2    * Copyright (C) 2007-2008 JVending Masa
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package com.simpligility.maven.plugins.android;
17  
18  /**
19   *
20   */
21  public class ExecutionException extends Exception
22  {
23  
24      static final long serialVersionUID = - 7843278034782074384L;
25  
26      /**
27       * Constructs an <code>ExecutionException</code>  with no exception message.
28       */
29      public ExecutionException()
30      {
31          super();
32      }
33  
34      /**
35       * Constructs an <code>ExecutionException</code> with the specified exception message.
36       *
37       * @param message the exception message
38       */
39      public ExecutionException( String message )
40      {
41          super( message );
42      }
43  
44      /**
45       * Constructs an <code>ExecutionException</code> with the specified exception message and cause of the exception.
46       *
47       * @param message the exception message
48       * @param cause   the cause of the exception
49       */
50      public ExecutionException( String message, Throwable cause )
51      {
52          super( message, cause );
53      }
54  
55      /**
56       * Constructs an <code>ExecutionException</code> with the cause of the exception.
57       *
58       * @param cause the cause of the exception
59       */
60      public ExecutionException( Throwable cause )
61      {
62          super( cause );
63      }
64  }
65