View Javadoc

1   /*
2    * #%L
3    * xcode-maven-plugin
4    * %%
5    * Copyright (C) 2012 SAP AG
6    * %%
7    * Licensed under the Apache License, Version 2.0 (the "License");
8    * you may not use this file except in compliance with the License.
9    * You may obtain a copy of the License at
10   * 
11   *      http://www.apache.org/licenses/LICENSE-2.0
12   * 
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   * #L%
19   */
20  package com.sap.prd.mobile.ios.mios;
21  
22  /**
23   * Root exception for all xcode related declared exceptions inside the xcode plugin.
24   */
25  public class XCodeException extends Exception
26  {
27    private static final long serialVersionUID = -523126740513390698L;
28  
29    public XCodeException()
30    {
31      this((String) null);
32    }
33  
34    public XCodeException(String message, Throwable cause)
35    {
36      super(message, cause);
37    }
38  
39    public XCodeException(String message)
40    {
41      this(message, null);
42    }
43  
44    public XCodeException(Throwable cause)
45    {
46      this(null, cause);
47    }
48  }