dion        2003/07/30 21:32:05

  Modified:    src/java/org/apache/maven/jelly/tags BaseTagSupport.java
  Log:
  Fix throw
  
  Revision  Changes    Path
  1.7       +1 -2      maven/src/java/org/apache/maven/jelly/tags/BaseTagSupport.java
  
  Index: BaseTagSupport.java
  ===================================================================
  RCS file: /home/cvs/maven/src/java/org/apache/maven/jelly/tags/BaseTagSupport.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- BaseTagSupport.java       31 Jul 2003 04:20:22 -0000      1.6
  +++ BaseTagSupport.java       31 Jul 2003 04:32:05 -0000      1.7
  @@ -56,7 +56,6 @@
    * ====================================================================
    */
   
  -import org.apache.commons.jelly.JellyTagException;
   import org.apache.commons.jelly.MissingAttributeException;
   import org.apache.commons.jelly.TagSupport;
   import org.apache.maven.jelly.MavenJellyContext;
  @@ -88,7 +87,7 @@
        * @param message the message to pass in with the exception
        * @throws MissingAttributeException when the attribute is null
        */
  -    protected void checkAttribute(Object attribute, String message) throws 
JellyTagException
  +    protected void checkAttribute(Object attribute, String message) throws 
MissingAttributeException
       {
           if (attribute == null)
           {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to