repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git]
/
TAO
/
tests
/
IDL_Test
/
exception_misuse1.idl
blob
0c614127f203303721e0c7ccba32cf77e70242bb
1
/**
2
* @file exception_misuse1.idl
3
*
4
* https://github.com/DOCGroup/ACE_TAO/issues/2015
5
*
6
* tao_idl shall reject use of exception for argument of method
7
*
8
*/
9
interface
exception_misuse1
{
10
exception exc_t
{
11
string
reason
;
12
};
13
void
doit
(
in
exc_t ex
);
14
};
15