Coverage Report - org.apache.maven.model.converter.PomTranslationException
 
Classes in this File Line Coverage Branch Coverage Complexity
PomTranslationException
0%
0/12
N/A
1
 
 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  0
         this( groupId, artifactId, version, message, null );
 38  0
     }
 39  
 
 40  
     public PomTranslationException( String groupId, String artifactId, String version, Throwable cause )
 41  
     {
 42  0
         this( groupId, artifactId, version, "[No message provided.]", cause );
 43  0
     }
 44  
 
 45  
     public PomTranslationException( String groupId, String artifactId, String version, String message, Throwable cause )
 46  
     {
 47  0
         super( "In POM{" + groupId + ":" + artifactId + ":" + version + "}: " + message, cause );
 48  0
         this.groupId = groupId;
 49  0
         this.artifactId = artifactId;
 50  0
         this.version = version;
 51  0
     }
 52  
 
 53  
     public String getGroupId()
 54  
     {
 55  0
         return groupId;
 56  
     }
 57  
 
 58  
     public String getArtifactId()
 59  
     {
 60  0
         return artifactId;
 61  
     }
 62  
 
 63  
     public String getVersion()
 64  
     {
 65  0
         return version;
 66  
     }
 67  
 }