This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 200716 - @PostContruct method cannot throw checked exception
Summary: @PostContruct method cannot throw checked exception
Status: RESOLVED FIXED
Alias: None
Product: javaee
Classification: Unclassified
Component: EJB (show other bugs)
Version: 7.0.1
Hardware: PC Other
: P3 normal (vote)
Assignee: Martin Fousek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-06 00:12 UTC by arungupta
Modified: 2012-04-13 12:22 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description arungupta 2011-08-06 00:12:42 UTC
As per the @PostConstruct javadoc at:

http://download.oracle.com/javaee/6/api/javax/annotation/PostConstruct.html

The method MUST NOT throw a checked exception.

So the following code should tag an error:

-- cut here --
@Singleton
public class NewSessionBean {

    @PostConstruct
    void startup() throws SQLException {
    }
-- cut here --
Comment 1 Martin Fousek 2011-10-12 04:44:42 UTC
Will be fixed together with issue #200715 in next release.
Comment 2 Martin Fousek 2012-04-13 12:22:07 UTC
Done in web-main #acb87914f0bb.