blob: c9fcde86f38e495bd0fc1196a2d70a685c7f5265 (
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
|
/**
* @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 -Ge 1 -GA -Sc -Sci -SS
* -Wb,export_macro=TAO_Export
* -Wb,export_include=tao/TAO_Export.h
* -Wb,pre_include="ace/pre.h"
* -Wb,post_include="ace/post.h"
* WrongTransaction.pidl
*
* and then:
*
* cp orig/WrongTransactionC.{h,inl,cpp} .
* cp orig/WrongTransactionS.h .
*
*/
#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 {};
};
#endif /* TAO_CORBA_WRONGTRANSACTION_PIDL */
|