View Javadoc

1   package org.apache.maven.model.converter;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  /**
23   * @author jdcasey
24   */
25  public class PomTranslationException
26      extends Exception
27  {
28  
29      private final String groupId;
30  
31      private final String artifactId;
32  
33      private final String version;
34  
35      public PomTranslationException( String groupId, String artifactId, String version, String message )
36      {
37          this( groupId, artifactId, version, message, null );
38      }
39  
40      public PomTranslationException( String groupId, String artifactId, String version, Throwable cause )
41      {
42          this( groupId, artifactId, version, "[No message provided.]", cause );
43      }
44  
45      public PomTranslationException( String groupId, String artifactId, String version, String message, Throwable cause )
46      {
47          super( "In POM{" + groupId + ":" + artifactId + ":" + version + "}: " + message, cause );
48          this.groupId = groupId;
49          this.artifactId = artifactId;
50          this.version = version;
51      }
52  
53      public String getGroupId()
54      {
55          return groupId;
56      }
57  
58      public String getArtifactId()
59      {
60          return artifactId;
61      }
62  
63      public String getVersion()
64      {
65          return version;
66      }
67  }