1 package org.apache.maven.execution; 2 3 18 19 25 public class BuildFailure 26 { 27 private final Exception cause; 28 29 private final String task; 30 31 private final long time; 32 33 BuildFailure( Exception cause, String task, long time ) 34 { 35 this.cause = cause; 36 this.task = task; 37 this.time = time; 38 } 39 40 public String getTask() 41 { 42 return task; 43 } 44 45 public Exception getCause() 46 { 47 return cause; 48 } 49 50 public long getTime() 51 { 52 return time; 53 } 54 } 55 | Popular Tags |