/usr/share/idl/tao/Messaging/ExceptionHolder.pidl is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // -*- IDL -*-
//=============================================================================
/**
* @file ExceptionHolder.pidl
*
* $Id: ExceptionHolder.pidl 88517 2010-01-13 08:54:34Z johnnyw $
*
* tao_idl
* -o orig -Gp -Gd -GA -SS
* -Wb,export_macro=TAO_Messaging_Export
* -Wb,export_include=messaging_export.h
* -Wb,pre_include="ace/pre.h"
* -Wb,post_include="ace/post.h" -I$(TAO_ROOT)
* ExceptionHolder.pidl
*
*/
//=============================================================================
#ifndef TAO_MESSAGING_EXCEPTIONHOLDER_PIDL
#define TAO_MESSAGING_EXCEPTIONHOLDER_PIDL
#include "tao/OctetSeq.pidl"
#include "tao/AnyTypeCode/Dynamic.pidl"
#pragma prefix "omg.org"
module Messaging
{
/// Exception Delivery in the Callback Model
native UserExceptionBase;
valuetype ExceptionHolder {
void raise_exception() raises (UserExceptionBase);
void raise_exception_with_list(
in Dynamic::ExceptionList exc_list)
raises (UserExceptionBase);
private boolean is_system_exception;
private boolean byte_order;
private CORBA::OctetSeq marshaled_exception;
};
};
#endif /* TAO_MESSAGING_EXCEPTIONHOLDER_PIDL */
|