You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2006/12/24 20:24:23 UTC

[jira] Assigned: (HARMONY-2477) [classlib][annotation] java.lang.annotation.IncompleteAnnotationException(null,String ) does not throw NullPointerException (RI compatibility issue)

     [ http://issues.apache.org/jira/browse/HARMONY-2477?page=all ]

Alexei Zakharov reassigned HARMONY-2477:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][annotation] java.lang.annotation.IncompleteAnnotationException(null,String ) does not throw NullPointerException (RI compatibility issue)
> ----------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2477
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2477
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Anton Ivanov
>         Assigned To: Alexei Zakharov
>            Priority: Trivial
>         Attachments: Harmony-2477-Test.patch, Harmony-2477.patch
>
>
> java.lang.IncompleteAnnotationException(Class<? extends Annotation> annotationType,String elementName) does not throw 
> NullPointerException if annotationType == null while RI throws. But there is no mention of any exceptions in the specificarion. 
> So this is a compatibility issue.
> The code to reproduce the issue:
> import junit.framework.TestCase;
> import java.lang.annotation.IncompleteAnnotationException;
> public class TestIncompleteAnnotationException extends TestCase {     
>    public void test1 () {  
>        try {  
>            IncompleteAnnotationException obj 
>                = new IncompleteAnnotationException(null, "str");
>            fail("NullPointerException must be thrown");                
>        } catch (NullPointerException e) {
>            //expected
>        }
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira