View Javadoc

1   package org.apache.maven;
2   
3   public class ConfigurationInterpolationException
4       extends Exception
5   {
6   
7       private static final long serialVersionUID = 1L;
8   
9       public ConfigurationInterpolationException( String message, Throwable cause )
10      {
11          super( message, cause );
12      }
13  
14      public ConfigurationInterpolationException( String message )
15      {
16          super( message );
17      }
18  
19  }