blob: 0c6f36a6a260722380a7d6f5204b1711ae12b076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/**
* @file WrongTransaction.pidl
*
* $Id$
*
* @brief Pre-compiled IDL source for the CORBA::WrongTransaction
* exception.
*
* This file is used to generate WrongTransactionC.*, using the
* following command:
*
* tao_idl
* -o orig -Gp -Gd -Ge 1 -Gv -DCORBA3
* -Wb,export_macro=TAO_Export
* -Wb,export_include=TAO_Export.h
* -Wb,pre_include="ace/pre.h"
* -Wb,post_include="ace/post.h"
* WrongTransaction.pidl
*
* and then:
*
* patch < diffs/WrongTransaction.diff
*
*/
#ifndef TAO_CORBA_WRONGTRANSACTION_PIDL
#define TAO_CORBA_WRONGTRANSACTION_PIDL
#pragma prefix "omg.org"
module CORBA
{
/**
* @exception WrongTransaction
*
* @brief UserException for DII requests.
*
* This exception is thrown if a CORBA Request is implicitly
* associated with a transaction and is found to have an
* error in its parameters when checked at runtime (invocation).
*/
exception WrongTransaction {};
};
#pragma prefix ""
#endif /* TAO_CORBA_WRONGTRANSACTION_PIDL */
|