1 package org.apache.maven.project; 2 3 18 19 23 public class ProjectBuildingException 24 extends Exception  25 { 26 private final String projectId; 27 28 public ProjectBuildingException( String projectId, String message ) 29 { 30 super( message ); 31 this.projectId = projectId; 32 } 33 34 public ProjectBuildingException( String projectId, String message, Throwable cause ) 35 { 36 super( message, cause ); 37 this.projectId = projectId; 38 } 39 40 public String getProjectId() 41 { 42 return projectId; 43 } 44 } 45 | Popular Tags |