diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-02-08 01:08:32 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-02-08 01:08:32 +0000 |
commit | 78ae675a995746ed9c06cebcb299c5ab24adc091 (patch) | |
tree | 7ab7c47d9e7d717d76039c027c28553562075526 /TAO/tao/WrongTransaction.pidl | |
parent | 7df63542de3b2332e1bcbd60c16b0997ea5af417 (diff) | |
download | ATCD-78ae675a995746ed9c06cebcb299c5ab24adc091.tar.gz |
ChangeLogTag:Thu Feb 7 17:06:24 2002 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tao/WrongTransaction.pidl')
-rw-r--r-- | TAO/tao/WrongTransaction.pidl | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/TAO/tao/WrongTransaction.pidl b/TAO/tao/WrongTransaction.pidl new file mode 100644 index 00000000000..0c6f36a6a26 --- /dev/null +++ b/TAO/tao/WrongTransaction.pidl @@ -0,0 +1,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 */ |