You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Zakharov (JIRA)" <ji...@apache.org> on 2007/01/11 18:43:27 UTC

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

    [ https://issues.apache.org/jira/browse/HARMONY-2477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12463964 ] 

Vasily Zakharov commented on HARMONY-2477:
------------------------------------------

Thanks Alexei, the patch is fine.


> [classlib][annotation] java.lang.annotation.IncompleteAnnotationException(null,String ) does not throw NullPointerException (RI compatibility issue)
> ----------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2477
>                 URL: https://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: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira