1 package org.apache.maven.plugin; 2 3 18 19 25 public abstract class AbstractMojoExecutionException 26 extends Exception  27 { 28 protected Object source; 29 30 protected String longMessage; 31 32 public AbstractMojoExecutionException( String message ) 33 { 34 super( message ); 35 } 36 37 public AbstractMojoExecutionException( String message, Throwable cause ) 38 { 39 super( message, cause ); 40 } 41 42 public String getLongMessage() 43 { 44 return longMessage; 45 } 46 47 public Object getSource() 48 { 49 return source; 50 } 51 } 52 | Popular Tags |