Bugs item #741726, was opened at 2003-05-22 06:37
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=547854&aid=741726&group_id=76664
Category: IDL3 Parser
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Home Factory Exceptions
Initial Comment:
The IDL3 parser has a problem with the home factory
method exceptions. The following IDL code:
exception can_not_create {};
component Hello
{
attribute string id;
};
home HelloHome manages Hello
{
factory create_with_exception(in string id)
raises (can_not_create);
};
Leads to the following parser error:
Error parsing Hello.idl:
java.lang.RuntimeException: Errors during parsing:
java.lang.ClassCastException:
ccmtools.Metamodel.BaseIDL.MExceptionDefImpl
The example is stored in the test/idl/home_exception
directory.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=547854&aid=741726&group_id=76664
|