Update of /cvsroot/ccmtools/ccmtools/test/JavaLocalComponents/exceptions1
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv5682/test/JavaLocalComponents/exceptions1
Added Files:
exceptions1.idl .cvsignore Makefile
Log Message:
*) UserException now calculates the repo-id
*) all CCM-exceptions copy the message text to java.lang.Exception
*) some small updates
--- NEW FILE: .cvsignore ---
xxx
--- NEW FILE: Makefile ---
all:
ccmjava -app -iface -local -o xxx exceptions1.idl
clean:
rm -rf xxx
--- NEW FILE: exceptions1.idl ---
module MyModule {
exception MyException
{
string reason;
};
interface MyInterface
{
double sqrt(in double x) raises(MyException);
};
component MyComponent
{
provides MyInterface myFacet;
};
home MyComponentHome manages MyComponent {};
}; // /module MyModule
|