summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_i.cpp')
-rw-r--r--TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_i.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_i.cpp b/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_i.cpp
index 0870febeb3c..730d8f2e922 100644
--- a/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_i.cpp
+++ b/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_i.cpp
@@ -23,7 +23,6 @@ Foo_B_i::~Foo_B_i()
void
Foo_B_i::op1(void)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[0] ++;
}
@@ -31,7 +30,6 @@ Foo_B_i::op1(void)
void
Foo_B_i::op2(CORBA::Long value)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[1] ++;
this->in_long_[1].push_back (value);
@@ -40,7 +38,6 @@ Foo_B_i::op2(CORBA::Long value)
CORBA::Long
Foo_B_i::op3(CORBA::Long value)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[2] ++;
this->in_long_[2].push_back (value);
@@ -50,7 +47,6 @@ Foo_B_i::op3(CORBA::Long value)
void
Foo_B_i::op4(CORBA::Long value)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[3] ++;
this->in_long_[3].push_back (value);
@@ -59,7 +55,6 @@ Foo_B_i::op4(CORBA::Long value)
void
Foo_B_i::op5(void)
- ACE_THROW_SPEC((CORBA::SystemException, FooException))
{
this->op_count_[4] ++;
throw FooException();
@@ -69,7 +64,6 @@ Foo_B_i::op5(void)
CORBA::Boolean
Foo_B_i::op6(const TimeOfDay& t,
char*& message)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[5] ++;
char buf [20];
@@ -83,8 +77,6 @@ Foo_B_i::op6(const TimeOfDay& t,
void
Foo_B_i::op7(Callback_ptr cb)
- ACE_THROW_SPEC((CORBA::SystemException,
- FooException))
{
this->op_count_[6] ++;
@@ -104,7 +96,6 @@ Foo_B_i::op7(Callback_ptr cb)
void
Foo_B_i::test_unbounded_string_arg(const char* message)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[7] ++;
//ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_B_i::test_unbounded_string_arg ")
@@ -116,7 +107,6 @@ Foo_B_i::test_unbounded_string_arg(const char* message)
void
Foo_B_i::test_bounded_string_arg(const char* message)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[8] ++;
//ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_B_i::test_bounded_string_arg ")
@@ -128,7 +118,6 @@ Foo_B_i::test_bounded_string_arg(const char* message)
void
Foo_B_i::test_fixed_array_arg(const Fixed_Array message)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[9] ++;
@@ -155,7 +144,6 @@ Foo_B_i::test_fixed_array_arg(const Fixed_Array message)
void
Foo_B_i::test_bounded_var_size_arg(const Bounded_Var_Size& message)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[10] ++;
//ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_B_i::test_bounded_var_size_arg ")
@@ -167,7 +155,6 @@ Foo_B_i::test_bounded_var_size_arg(const Bounded_Var_Size& message)
void
Foo_B_i::test_unbounded_var_size_arg(const Unbounded_Var_Size& message)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[11] ++;
//ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_B_i::test_unbounded_var_size_arg ")
@@ -179,7 +166,6 @@ Foo_B_i::test_unbounded_var_size_arg(const Unbounded_Var_Size& message)
void
Foo_B_i::test_fixed_size_arg(const TimeOfDay& t)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_UNUSED_ARG(t);
@@ -192,7 +178,6 @@ Foo_B_i::test_fixed_size_arg(const TimeOfDay& t)
void
Foo_B_i::test_var_array_arg(const Var_Array messages)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[13] ++;
//ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_B_i::test_var_array_arg ")
@@ -236,7 +221,6 @@ Foo_B_i::test_var_array_arg(const Var_Array messages)
void
Foo_B_i::test_special_basic_arg(CORBA::Boolean value,
CORBA::Long client_id)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[14] ++;
//ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Foo_B_i::test_special_basic_arg ")
@@ -255,7 +239,6 @@ Foo_B_i::test_special_basic_arg(CORBA::Boolean value,
void
Foo_B_i::test_objref_arg(Callback_ptr cb)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_UNUSED_ARG(cb);
this->op_count_[15] ++;
@@ -266,7 +249,6 @@ Foo_B_i::test_objref_arg(Callback_ptr cb)
void
Foo_B_i::done(void)
- ACE_THROW_SPEC((CORBA::SystemException))
{
TheAppShutdown->client_done();
}