qpid_messaging 0.30.0 → 0.32.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/ext/cqpid/cqpid.cpp +670 -27
  3. metadata +21 -20
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14a54951e817102eeb8c5fb8315071a7754506eb
4
- data.tar.gz: 91b49da2eb9eec0574c6a85a1a549e4055797d80
3
+ metadata.gz: e3cebdcd11b08a662b4d4dd6d7f0672b63553f62
4
+ data.tar.gz: f4c9053aea75c9087b50eb2022aae6ead8eef9b0
5
5
  SHA512:
6
- metadata.gz: b439f5054d7fa6096e39c4ad9df66af89598c879487dbf1224a0524f09525d9322e8ac41c71bc5fde3c232e7f65f32efa3713d6ef5785c72dac9ccbebb3c6798
7
- data.tar.gz: 97115daa78898c87627122ce05730de7f1ee4efa52a37f10c6441b7b5dab4193fb990340f171ef0f84e89a3ee11869f19a8ebfa6562a366ae4cd42d7a40ce56d
6
+ metadata.gz: c885bc9cc1f3cb83c4f8fd1ee4d6532cab398ea64be5e3fe83e5fbe92e34da22c7ab0cb431ee0fdbe1c8f31eba7acf661de1b0d497e12a7bdc221f593ccfb126
7
+ data.tar.gz: 0c8792abe19512c1671fc3615ab8ce964e6c4e4e6680ab700fb0e3a337fbfcd3fe176d239d1edd8a0246f3eac075508e05e6746753096ca9996e6ad47af1c890
data/ext/cqpid/cqpid.cpp CHANGED
@@ -1,6 +1,6 @@
1
1
  /* ----------------------------------------------------------------------------
2
2
  * This file was automatically generated by SWIG (http://www.swig.org).
3
- * Version 2.0.11
3
+ * Version 3.0.5
4
4
  *
5
5
  * This file is not intended to be easily readable and contains a number of
6
6
  * coding conventions designed to improve portability and efficiency. Do not make
@@ -658,14 +658,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start,
658
658
  swig_module_info *iter = start;
659
659
  do {
660
660
  if (iter->size) {
661
- register size_t l = 0;
662
- register size_t r = iter->size - 1;
661
+ size_t l = 0;
662
+ size_t r = iter->size - 1;
663
663
  do {
664
664
  /* since l+r >= 0, we can (>> 1) instead (/ 2) */
665
- register size_t i = (l + r) >> 1;
665
+ size_t i = (l + r) >> 1;
666
666
  const char *iname = iter->types[i]->name;
667
667
  if (iname) {
668
- register int compare = strcmp(name, iname);
668
+ int compare = strcmp(name, iname);
669
669
  if (compare == 0) {
670
670
  return iter->types[i];
671
671
  } else if (compare < 0) {
@@ -709,7 +709,7 @@ SWIG_TypeQueryModule(swig_module_info *start,
709
709
  of the str field (the human readable name) */
710
710
  swig_module_info *iter = start;
711
711
  do {
712
- register size_t i = 0;
712
+ size_t i = 0;
713
713
  for (; i < iter->size; ++i) {
714
714
  if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
715
715
  return iter->types[i];
@@ -728,10 +728,10 @@ SWIG_TypeQueryModule(swig_module_info *start,
728
728
  SWIGRUNTIME char *
729
729
  SWIG_PackData(char *c, void *ptr, size_t sz) {
730
730
  static const char hex[17] = "0123456789abcdef";
731
- register const unsigned char *u = (unsigned char *) ptr;
732
- register const unsigned char *eu = u + sz;
731
+ const unsigned char *u = (unsigned char *) ptr;
732
+ const unsigned char *eu = u + sz;
733
733
  for (; u != eu; ++u) {
734
- register unsigned char uu = *u;
734
+ unsigned char uu = *u;
735
735
  *(c++) = hex[(uu & 0xf0) >> 4];
736
736
  *(c++) = hex[uu & 0xf];
737
737
  }
@@ -743,11 +743,11 @@ SWIG_PackData(char *c, void *ptr, size_t sz) {
743
743
  */
744
744
  SWIGRUNTIME const char *
745
745
  SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
746
- register unsigned char *u = (unsigned char *) ptr;
747
- register const unsigned char *eu = u + sz;
746
+ unsigned char *u = (unsigned char *) ptr;
747
+ const unsigned char *eu = u + sz;
748
748
  for (; u != eu; ++u) {
749
- register char d = *(c++);
750
- register unsigned char uu;
749
+ char d = *(c++);
750
+ unsigned char uu;
751
751
  if ((d >= '0') && (d <= '9'))
752
752
  uu = ((d - '0') << 4);
753
753
  else if ((d >= 'a') && (d <= 'f'))
@@ -1503,14 +1503,13 @@ SWIG_Ruby_InitRuntime(void)
1503
1503
  SWIGRUNTIME void
1504
1504
  SWIG_Ruby_define_class(swig_type_info *type)
1505
1505
  {
1506
- VALUE klass;
1507
1506
  char *klass_name = (char *) malloc(4 + strlen(type->name) + 1);
1508
1507
  sprintf(klass_name, "TYPE%s", type->name);
1509
1508
  if (NIL_P(_cSWIG_Pointer)) {
1510
1509
  _cSWIG_Pointer = rb_define_class_under(_mSWIG, "Pointer", rb_cObject);
1511
1510
  rb_undef_method(CLASS_OF(_cSWIG_Pointer), "new");
1512
1511
  }
1513
- klass = rb_define_class_under(_mSWIG, klass_name, _cSWIG_Pointer);
1512
+ rb_define_class_under(_mSWIG, klass_name, _cSWIG_Pointer);
1514
1513
  free((void *) klass_name);
1515
1514
  }
1516
1515
 
@@ -1836,7 +1835,7 @@ static VALUE mCqpid;
1836
1835
  #define SWIG_RUBY_THREAD_END_BLOCK
1837
1836
 
1838
1837
 
1839
- #define SWIGVERSION 0x020011
1838
+ #define SWIGVERSION 0x030005
1840
1839
  #define SWIG_VERSION SWIGVERSION
1841
1840
 
1842
1841
 
@@ -2010,7 +2009,7 @@ SWIG_ruby_failed(void)
2010
2009
  }
2011
2010
 
2012
2011
 
2013
- /*@SWIG:/usr/share/swig/2.0.11/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
2012
+ /*@SWIG:/usr/share/swig/3.0.5/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
2014
2013
  SWIGINTERN VALUE SWIG_AUX_NUM2ULONG(VALUE *args)
2015
2014
  {
2016
2015
  VALUE obj = args[0];
@@ -2059,7 +2058,7 @@ SWIG_AsVal_size_t (VALUE obj, size_t *val)
2059
2058
  #endif
2060
2059
 
2061
2060
 
2062
- /*@SWIG:/usr/share/swig/2.0.11/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
2061
+ /*@SWIG:/usr/share/swig/3.0.5/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
2063
2062
  SWIGINTERN VALUE SWIG_AUX_NUM2LONG(VALUE *args)
2064
2063
  {
2065
2064
  VALUE obj = args[0];
@@ -2325,6 +2324,10 @@ _wrap_new_Address__SWIG_0(int argc, VALUE *argv, VALUE self) {
2325
2324
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
2326
2325
  rb_raise(merror, "%s", error.what());
2327
2326
  }
2327
+ catch(qpid::messaging::TransactionUnknown& error) {
2328
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
2329
+ rb_raise(merror, "%s", error.what());
2330
+ }
2328
2331
  catch(qpid::messaging::TransactionError& error) {
2329
2332
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
2330
2333
  rb_raise(merror, "%s", error.what());
@@ -2443,6 +2446,10 @@ _wrap_new_Address__SWIG_1(int argc, VALUE *argv, VALUE self) {
2443
2446
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
2444
2447
  rb_raise(merror, "%s", error.what());
2445
2448
  }
2449
+ catch(qpid::messaging::TransactionUnknown& error) {
2450
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
2451
+ rb_raise(merror, "%s", error.what());
2452
+ }
2446
2453
  catch(qpid::messaging::TransactionError& error) {
2447
2454
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
2448
2455
  rb_raise(merror, "%s", error.what());
@@ -2594,6 +2601,10 @@ _wrap_new_Address__SWIG_2(int argc, VALUE *argv, VALUE self) {
2594
2601
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
2595
2602
  rb_raise(merror, "%s", error.what());
2596
2603
  }
2604
+ catch(qpid::messaging::TransactionUnknown& error) {
2605
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
2606
+ rb_raise(merror, "%s", error.what());
2607
+ }
2597
2608
  catch(qpid::messaging::TransactionError& error) {
2598
2609
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
2599
2610
  rb_raise(merror, "%s", error.what());
@@ -2742,6 +2753,10 @@ _wrap_new_Address__SWIG_3(int argc, VALUE *argv, VALUE self) {
2742
2753
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
2743
2754
  rb_raise(merror, "%s", error.what());
2744
2755
  }
2756
+ catch(qpid::messaging::TransactionUnknown& error) {
2757
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
2758
+ rb_raise(merror, "%s", error.what());
2759
+ }
2745
2760
  catch(qpid::messaging::TransactionError& error) {
2746
2761
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
2747
2762
  rb_raise(merror, "%s", error.what());
@@ -2885,6 +2900,10 @@ _wrap_new_Address__SWIG_4(int argc, VALUE *argv, VALUE self) {
2885
2900
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
2886
2901
  rb_raise(merror, "%s", error.what());
2887
2902
  }
2903
+ catch(qpid::messaging::TransactionUnknown& error) {
2904
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
2905
+ rb_raise(merror, "%s", error.what());
2906
+ }
2888
2907
  catch(qpid::messaging::TransactionError& error) {
2889
2908
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
2890
2909
  rb_raise(merror, "%s", error.what());
@@ -3084,6 +3103,10 @@ _wrap_Address_getName(int argc, VALUE *argv, VALUE self) {
3084
3103
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
3085
3104
  rb_raise(merror, "%s", error.what());
3086
3105
  }
3106
+ catch(qpid::messaging::TransactionUnknown& error) {
3107
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
3108
+ rb_raise(merror, "%s", error.what());
3109
+ }
3087
3110
  catch(qpid::messaging::TransactionError& error) {
3088
3111
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
3089
3112
  rb_raise(merror, "%s", error.what());
@@ -3209,6 +3232,10 @@ _wrap_Address_setName(int argc, VALUE *argv, VALUE self) {
3209
3232
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
3210
3233
  rb_raise(merror, "%s", error.what());
3211
3234
  }
3235
+ catch(qpid::messaging::TransactionUnknown& error) {
3236
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
3237
+ rb_raise(merror, "%s", error.what());
3238
+ }
3212
3239
  catch(qpid::messaging::TransactionError& error) {
3213
3240
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
3214
3241
  rb_raise(merror, "%s", error.what());
@@ -3324,6 +3351,10 @@ _wrap_Address_getSubject(int argc, VALUE *argv, VALUE self) {
3324
3351
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
3325
3352
  rb_raise(merror, "%s", error.what());
3326
3353
  }
3354
+ catch(qpid::messaging::TransactionUnknown& error) {
3355
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
3356
+ rb_raise(merror, "%s", error.what());
3357
+ }
3327
3358
  catch(qpid::messaging::TransactionError& error) {
3328
3359
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
3329
3360
  rb_raise(merror, "%s", error.what());
@@ -3449,6 +3480,10 @@ _wrap_Address_setSubject(int argc, VALUE *argv, VALUE self) {
3449
3480
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
3450
3481
  rb_raise(merror, "%s", error.what());
3451
3482
  }
3483
+ catch(qpid::messaging::TransactionUnknown& error) {
3484
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
3485
+ rb_raise(merror, "%s", error.what());
3486
+ }
3452
3487
  catch(qpid::messaging::TransactionError& error) {
3453
3488
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
3454
3489
  rb_raise(merror, "%s", error.what());
@@ -3564,6 +3599,10 @@ _wrap_Address_getOptions__SWIG_0(int argc, VALUE *argv, VALUE self) {
3564
3599
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
3565
3600
  rb_raise(merror, "%s", error.what());
3566
3601
  }
3602
+ catch(qpid::messaging::TransactionUnknown& error) {
3603
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
3604
+ rb_raise(merror, "%s", error.what());
3605
+ }
3567
3606
  catch(qpid::messaging::TransactionError& error) {
3568
3607
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
3569
3608
  rb_raise(merror, "%s", error.what());
@@ -3680,6 +3719,10 @@ _wrap_Address_getOptions__SWIG_1(int argc, VALUE *argv, VALUE self) {
3680
3719
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
3681
3720
  rb_raise(merror, "%s", error.what());
3682
3721
  }
3722
+ catch(qpid::messaging::TransactionUnknown& error) {
3723
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
3724
+ rb_raise(merror, "%s", error.what());
3725
+ }
3683
3726
  catch(qpid::messaging::TransactionError& error) {
3684
3727
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
3685
3728
  rb_raise(merror, "%s", error.what());
@@ -3838,6 +3881,10 @@ _wrap_Address_setOptions(int argc, VALUE *argv, VALUE self) {
3838
3881
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
3839
3882
  rb_raise(merror, "%s", error.what());
3840
3883
  }
3884
+ catch(qpid::messaging::TransactionUnknown& error) {
3885
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
3886
+ rb_raise(merror, "%s", error.what());
3887
+ }
3841
3888
  catch(qpid::messaging::TransactionError& error) {
3842
3889
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
3843
3890
  rb_raise(merror, "%s", error.what());
@@ -3957,6 +4004,10 @@ _wrap_Address_getType(int argc, VALUE *argv, VALUE self) {
3957
4004
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
3958
4005
  rb_raise(merror, "%s", error.what());
3959
4006
  }
4007
+ catch(qpid::messaging::TransactionUnknown& error) {
4008
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
4009
+ rb_raise(merror, "%s", error.what());
4010
+ }
3960
4011
  catch(qpid::messaging::TransactionError& error) {
3961
4012
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
3962
4013
  rb_raise(merror, "%s", error.what());
@@ -4082,6 +4133,10 @@ _wrap_Address_setType(int argc, VALUE *argv, VALUE self) {
4082
4133
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
4083
4134
  rb_raise(merror, "%s", error.what());
4084
4135
  }
4136
+ catch(qpid::messaging::TransactionUnknown& error) {
4137
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
4138
+ rb_raise(merror, "%s", error.what());
4139
+ }
4085
4140
  catch(qpid::messaging::TransactionError& error) {
4086
4141
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
4087
4142
  rb_raise(merror, "%s", error.what());
@@ -4197,6 +4252,10 @@ _wrap_Address_str(int argc, VALUE *argv, VALUE self) {
4197
4252
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
4198
4253
  rb_raise(merror, "%s", error.what());
4199
4254
  }
4255
+ catch(qpid::messaging::TransactionUnknown& error) {
4256
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
4257
+ rb_raise(merror, "%s", error.what());
4258
+ }
4200
4259
  catch(qpid::messaging::TransactionError& error) {
4201
4260
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
4202
4261
  rb_raise(merror, "%s", error.what());
@@ -4329,6 +4388,10 @@ _wrap_new_Duration(int argc, VALUE *argv, VALUE self) {
4329
4388
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
4330
4389
  rb_raise(merror, "%s", error.what());
4331
4390
  }
4391
+ catch(qpid::messaging::TransactionUnknown& error) {
4392
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
4393
+ rb_raise(merror, "%s", error.what());
4394
+ }
4332
4395
  catch(qpid::messaging::TransactionError& error) {
4333
4396
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
4334
4397
  rb_raise(merror, "%s", error.what());
@@ -4442,6 +4505,10 @@ _wrap_Duration_getMilliseconds(int argc, VALUE *argv, VALUE self) {
4442
4505
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
4443
4506
  rb_raise(merror, "%s", error.what());
4444
4507
  }
4508
+ catch(qpid::messaging::TransactionUnknown& error) {
4509
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
4510
+ rb_raise(merror, "%s", error.what());
4511
+ }
4445
4512
  catch(qpid::messaging::TransactionError& error) {
4446
4513
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
4447
4514
  rb_raise(merror, "%s", error.what());
@@ -4601,6 +4668,10 @@ _wrap_Duration___mul__(int argc, VALUE *argv, VALUE self) {
4601
4668
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
4602
4669
  rb_raise(merror, "%s", error.what());
4603
4670
  }
4671
+ catch(qpid::messaging::TransactionUnknown& error) {
4672
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
4673
+ rb_raise(merror, "%s", error.what());
4674
+ }
4604
4675
  catch(qpid::messaging::TransactionError& error) {
4605
4676
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
4606
4677
  rb_raise(merror, "%s", error.what());
@@ -4730,6 +4801,10 @@ _wrap___mul____SWIG_0(int argc, VALUE *argv, VALUE self) {
4730
4801
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
4731
4802
  rb_raise(merror, "%s", error.what());
4732
4803
  }
4804
+ catch(qpid::messaging::TransactionUnknown& error) {
4805
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
4806
+ rb_raise(merror, "%s", error.what());
4807
+ }
4733
4808
  catch(qpid::messaging::TransactionError& error) {
4734
4809
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
4735
4810
  rb_raise(merror, "%s", error.what());
@@ -4854,6 +4929,10 @@ _wrap___mul____SWIG_1(int argc, VALUE *argv, VALUE self) {
4854
4929
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
4855
4930
  rb_raise(merror, "%s", error.what());
4856
4931
  }
4932
+ catch(qpid::messaging::TransactionUnknown& error) {
4933
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
4934
+ rb_raise(merror, "%s", error.what());
4935
+ }
4857
4936
  catch(qpid::messaging::TransactionError& error) {
4858
4937
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
4859
4938
  rb_raise(merror, "%s", error.what());
@@ -5039,6 +5118,10 @@ _wrap___eq__(int argc, VALUE *argv, VALUE self) {
5039
5118
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
5040
5119
  rb_raise(merror, "%s", error.what());
5041
5120
  }
5121
+ catch(qpid::messaging::TransactionUnknown& error) {
5122
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
5123
+ rb_raise(merror, "%s", error.what());
5124
+ }
5042
5125
  catch(qpid::messaging::TransactionError& error) {
5043
5126
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
5044
5127
  rb_raise(merror, "%s", error.what());
@@ -5151,6 +5234,10 @@ _wrap_new_Message__SWIG_0(int argc, VALUE *argv, VALUE self) {
5151
5234
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
5152
5235
  rb_raise(merror, "%s", error.what());
5153
5236
  }
5237
+ catch(qpid::messaging::TransactionUnknown& error) {
5238
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
5239
+ rb_raise(merror, "%s", error.what());
5240
+ }
5154
5241
  catch(qpid::messaging::TransactionError& error) {
5155
5242
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
5156
5243
  rb_raise(merror, "%s", error.what());
@@ -5275,6 +5362,10 @@ _wrap_new_Message__SWIG_1(int argc, VALUE *argv, VALUE self) {
5275
5362
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
5276
5363
  rb_raise(merror, "%s", error.what());
5277
5364
  }
5365
+ catch(qpid::messaging::TransactionUnknown& error) {
5366
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
5367
+ rb_raise(merror, "%s", error.what());
5368
+ }
5278
5369
  catch(qpid::messaging::TransactionError& error) {
5279
5370
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
5280
5371
  rb_raise(merror, "%s", error.what());
@@ -5382,6 +5473,10 @@ _wrap_new_Message__SWIG_2(int argc, VALUE *argv, VALUE self) {
5382
5473
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
5383
5474
  rb_raise(merror, "%s", error.what());
5384
5475
  }
5476
+ catch(qpid::messaging::TransactionUnknown& error) {
5477
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
5478
+ rb_raise(merror, "%s", error.what());
5479
+ }
5385
5480
  catch(qpid::messaging::TransactionError& error) {
5386
5481
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
5387
5482
  rb_raise(merror, "%s", error.what());
@@ -5504,6 +5599,10 @@ _wrap_new_Message__SWIG_3(int argc, VALUE *argv, VALUE self) {
5504
5599
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
5505
5600
  rb_raise(merror, "%s", error.what());
5506
5601
  }
5602
+ catch(qpid::messaging::TransactionUnknown& error) {
5603
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
5604
+ rb_raise(merror, "%s", error.what());
5605
+ }
5507
5606
  catch(qpid::messaging::TransactionError& error) {
5508
5607
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
5509
5608
  rb_raise(merror, "%s", error.what());
@@ -5639,6 +5738,10 @@ _wrap_new_Message__SWIG_4(int argc, VALUE *argv, VALUE self) {
5639
5738
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
5640
5739
  rb_raise(merror, "%s", error.what());
5641
5740
  }
5741
+ catch(qpid::messaging::TransactionUnknown& error) {
5742
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
5743
+ rb_raise(merror, "%s", error.what());
5744
+ }
5642
5745
  catch(qpid::messaging::TransactionError& error) {
5643
5746
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
5644
5747
  rb_raise(merror, "%s", error.what());
@@ -5837,6 +5940,10 @@ _wrap_Message_setReplyTo(int argc, VALUE *argv, VALUE self) {
5837
5940
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
5838
5941
  rb_raise(merror, "%s", error.what());
5839
5942
  }
5943
+ catch(qpid::messaging::TransactionUnknown& error) {
5944
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
5945
+ rb_raise(merror, "%s", error.what());
5946
+ }
5840
5947
  catch(qpid::messaging::TransactionError& error) {
5841
5948
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
5842
5949
  rb_raise(merror, "%s", error.what());
@@ -5950,6 +6057,10 @@ _wrap_Message_getReplyTo(int argc, VALUE *argv, VALUE self) {
5950
6057
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
5951
6058
  rb_raise(merror, "%s", error.what());
5952
6059
  }
6060
+ catch(qpid::messaging::TransactionUnknown& error) {
6061
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
6062
+ rb_raise(merror, "%s", error.what());
6063
+ }
5953
6064
  catch(qpid::messaging::TransactionError& error) {
5954
6065
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
5955
6066
  rb_raise(merror, "%s", error.what());
@@ -6075,6 +6186,10 @@ _wrap_Message_setSubject(int argc, VALUE *argv, VALUE self) {
6075
6186
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
6076
6187
  rb_raise(merror, "%s", error.what());
6077
6188
  }
6189
+ catch(qpid::messaging::TransactionUnknown& error) {
6190
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
6191
+ rb_raise(merror, "%s", error.what());
6192
+ }
6078
6193
  catch(qpid::messaging::TransactionError& error) {
6079
6194
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
6080
6195
  rb_raise(merror, "%s", error.what());
@@ -6190,6 +6305,10 @@ _wrap_Message_getSubject(int argc, VALUE *argv, VALUE self) {
6190
6305
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
6191
6306
  rb_raise(merror, "%s", error.what());
6192
6307
  }
6308
+ catch(qpid::messaging::TransactionUnknown& error) {
6309
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
6310
+ rb_raise(merror, "%s", error.what());
6311
+ }
6193
6312
  catch(qpid::messaging::TransactionError& error) {
6194
6313
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
6195
6314
  rb_raise(merror, "%s", error.what());
@@ -6315,6 +6434,10 @@ _wrap_Message_setContentType(int argc, VALUE *argv, VALUE self) {
6315
6434
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
6316
6435
  rb_raise(merror, "%s", error.what());
6317
6436
  }
6437
+ catch(qpid::messaging::TransactionUnknown& error) {
6438
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
6439
+ rb_raise(merror, "%s", error.what());
6440
+ }
6318
6441
  catch(qpid::messaging::TransactionError& error) {
6319
6442
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
6320
6443
  rb_raise(merror, "%s", error.what());
@@ -6430,6 +6553,10 @@ _wrap_Message_getContentType(int argc, VALUE *argv, VALUE self) {
6430
6553
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
6431
6554
  rb_raise(merror, "%s", error.what());
6432
6555
  }
6556
+ catch(qpid::messaging::TransactionUnknown& error) {
6557
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
6558
+ rb_raise(merror, "%s", error.what());
6559
+ }
6433
6560
  catch(qpid::messaging::TransactionError& error) {
6434
6561
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
6435
6562
  rb_raise(merror, "%s", error.what());
@@ -6555,6 +6682,10 @@ _wrap_Message_setMessageId(int argc, VALUE *argv, VALUE self) {
6555
6682
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
6556
6683
  rb_raise(merror, "%s", error.what());
6557
6684
  }
6685
+ catch(qpid::messaging::TransactionUnknown& error) {
6686
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
6687
+ rb_raise(merror, "%s", error.what());
6688
+ }
6558
6689
  catch(qpid::messaging::TransactionError& error) {
6559
6690
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
6560
6691
  rb_raise(merror, "%s", error.what());
@@ -6670,6 +6801,10 @@ _wrap_Message_getMessageId(int argc, VALUE *argv, VALUE self) {
6670
6801
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
6671
6802
  rb_raise(merror, "%s", error.what());
6672
6803
  }
6804
+ catch(qpid::messaging::TransactionUnknown& error) {
6805
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
6806
+ rb_raise(merror, "%s", error.what());
6807
+ }
6673
6808
  catch(qpid::messaging::TransactionError& error) {
6674
6809
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
6675
6810
  rb_raise(merror, "%s", error.what());
@@ -6795,6 +6930,10 @@ _wrap_Message_setUserId(int argc, VALUE *argv, VALUE self) {
6795
6930
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
6796
6931
  rb_raise(merror, "%s", error.what());
6797
6932
  }
6933
+ catch(qpid::messaging::TransactionUnknown& error) {
6934
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
6935
+ rb_raise(merror, "%s", error.what());
6936
+ }
6798
6937
  catch(qpid::messaging::TransactionError& error) {
6799
6938
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
6800
6939
  rb_raise(merror, "%s", error.what());
@@ -6910,6 +7049,10 @@ _wrap_Message_getUserId(int argc, VALUE *argv, VALUE self) {
6910
7049
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
6911
7050
  rb_raise(merror, "%s", error.what());
6912
7051
  }
7052
+ catch(qpid::messaging::TransactionUnknown& error) {
7053
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
7054
+ rb_raise(merror, "%s", error.what());
7055
+ }
6913
7056
  catch(qpid::messaging::TransactionError& error) {
6914
7057
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
6915
7058
  rb_raise(merror, "%s", error.what());
@@ -7035,6 +7178,10 @@ _wrap_Message_setCorrelationId(int argc, VALUE *argv, VALUE self) {
7035
7178
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7036
7179
  rb_raise(merror, "%s", error.what());
7037
7180
  }
7181
+ catch(qpid::messaging::TransactionUnknown& error) {
7182
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
7183
+ rb_raise(merror, "%s", error.what());
7184
+ }
7038
7185
  catch(qpid::messaging::TransactionError& error) {
7039
7186
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7040
7187
  rb_raise(merror, "%s", error.what());
@@ -7150,6 +7297,10 @@ _wrap_Message_getCorrelationId(int argc, VALUE *argv, VALUE self) {
7150
7297
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7151
7298
  rb_raise(merror, "%s", error.what());
7152
7299
  }
7300
+ catch(qpid::messaging::TransactionUnknown& error) {
7301
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
7302
+ rb_raise(merror, "%s", error.what());
7303
+ }
7153
7304
  catch(qpid::messaging::TransactionError& error) {
7154
7305
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7155
7306
  rb_raise(merror, "%s", error.what());
@@ -7266,6 +7417,10 @@ _wrap_Message_setPriority(int argc, VALUE *argv, VALUE self) {
7266
7417
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7267
7418
  rb_raise(merror, "%s", error.what());
7268
7419
  }
7420
+ catch(qpid::messaging::TransactionUnknown& error) {
7421
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
7422
+ rb_raise(merror, "%s", error.what());
7423
+ }
7269
7424
  catch(qpid::messaging::TransactionError& error) {
7270
7425
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7271
7426
  rb_raise(merror, "%s", error.what());
@@ -7379,6 +7534,10 @@ _wrap_Message_getPriority(int argc, VALUE *argv, VALUE self) {
7379
7534
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7380
7535
  rb_raise(merror, "%s", error.what());
7381
7536
  }
7537
+ catch(qpid::messaging::TransactionUnknown& error) {
7538
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
7539
+ rb_raise(merror, "%s", error.what());
7540
+ }
7382
7541
  catch(qpid::messaging::TransactionError& error) {
7383
7542
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7384
7543
  rb_raise(merror, "%s", error.what());
@@ -7507,6 +7666,10 @@ _wrap_Message_setTtl(int argc, VALUE *argv, VALUE self) {
7507
7666
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7508
7667
  rb_raise(merror, "%s", error.what());
7509
7668
  }
7669
+ catch(qpid::messaging::TransactionUnknown& error) {
7670
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
7671
+ rb_raise(merror, "%s", error.what());
7672
+ }
7510
7673
  catch(qpid::messaging::TransactionError& error) {
7511
7674
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7512
7675
  rb_raise(merror, "%s", error.what());
@@ -7620,6 +7783,10 @@ _wrap_Message_getTtl(int argc, VALUE *argv, VALUE self) {
7620
7783
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7621
7784
  rb_raise(merror, "%s", error.what());
7622
7785
  }
7786
+ catch(qpid::messaging::TransactionUnknown& error) {
7787
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
7788
+ rb_raise(merror, "%s", error.what());
7789
+ }
7623
7790
  catch(qpid::messaging::TransactionError& error) {
7624
7791
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7625
7792
  rb_raise(merror, "%s", error.what());
@@ -7740,6 +7907,10 @@ _wrap_Message_setDurable(int argc, VALUE *argv, VALUE self) {
7740
7907
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7741
7908
  rb_raise(merror, "%s", error.what());
7742
7909
  }
7910
+ catch(qpid::messaging::TransactionUnknown& error) {
7911
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
7912
+ rb_raise(merror, "%s", error.what());
7913
+ }
7743
7914
  catch(qpid::messaging::TransactionError& error) {
7744
7915
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7745
7916
  rb_raise(merror, "%s", error.what());
@@ -7853,6 +8024,10 @@ _wrap_Message_getDurable(int argc, VALUE *argv, VALUE self) {
7853
8024
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7854
8025
  rb_raise(merror, "%s", error.what());
7855
8026
  }
8027
+ catch(qpid::messaging::TransactionUnknown& error) {
8028
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
8029
+ rb_raise(merror, "%s", error.what());
8030
+ }
7856
8031
  catch(qpid::messaging::TransactionError& error) {
7857
8032
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7858
8033
  rb_raise(merror, "%s", error.what());
@@ -7967,6 +8142,10 @@ _wrap_Message_getRedelivered(int argc, VALUE *argv, VALUE self) {
7967
8142
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
7968
8143
  rb_raise(merror, "%s", error.what());
7969
8144
  }
8145
+ catch(qpid::messaging::TransactionUnknown& error) {
8146
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
8147
+ rb_raise(merror, "%s", error.what());
8148
+ }
7970
8149
  catch(qpid::messaging::TransactionError& error) {
7971
8150
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
7972
8151
  rb_raise(merror, "%s", error.what());
@@ -8087,6 +8266,10 @@ _wrap_Message_setRedelivered(int argc, VALUE *argv, VALUE self) {
8087
8266
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
8088
8267
  rb_raise(merror, "%s", error.what());
8089
8268
  }
8269
+ catch(qpid::messaging::TransactionUnknown& error) {
8270
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
8271
+ rb_raise(merror, "%s", error.what());
8272
+ }
8090
8273
  catch(qpid::messaging::TransactionError& error) {
8091
8274
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
8092
8275
  rb_raise(merror, "%s", error.what());
@@ -8200,6 +8383,10 @@ _wrap_Message_getProperties__SWIG_0(int argc, VALUE *argv, VALUE self) {
8200
8383
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
8201
8384
  rb_raise(merror, "%s", error.what());
8202
8385
  }
8386
+ catch(qpid::messaging::TransactionUnknown& error) {
8387
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
8388
+ rb_raise(merror, "%s", error.what());
8389
+ }
8203
8390
  catch(qpid::messaging::TransactionError& error) {
8204
8391
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
8205
8392
  rb_raise(merror, "%s", error.what());
@@ -8316,6 +8503,10 @@ _wrap_Message_getProperties__SWIG_1(int argc, VALUE *argv, VALUE self) {
8316
8503
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
8317
8504
  rb_raise(merror, "%s", error.what());
8318
8505
  }
8506
+ catch(qpid::messaging::TransactionUnknown& error) {
8507
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
8508
+ rb_raise(merror, "%s", error.what());
8509
+ }
8319
8510
  catch(qpid::messaging::TransactionError& error) {
8320
8511
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
8321
8512
  rb_raise(merror, "%s", error.what());
@@ -8474,6 +8665,10 @@ _wrap_Message_setProperties(int argc, VALUE *argv, VALUE self) {
8474
8665
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
8475
8666
  rb_raise(merror, "%s", error.what());
8476
8667
  }
8668
+ catch(qpid::messaging::TransactionUnknown& error) {
8669
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
8670
+ rb_raise(merror, "%s", error.what());
8671
+ }
8477
8672
  catch(qpid::messaging::TransactionError& error) {
8478
8673
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
8479
8674
  rb_raise(merror, "%s", error.what());
@@ -8604,6 +8799,10 @@ _wrap_Message_setContent__SWIG_0(int argc, VALUE *argv, VALUE self) {
8604
8799
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
8605
8800
  rb_raise(merror, "%s", error.what());
8606
8801
  }
8802
+ catch(qpid::messaging::TransactionUnknown& error) {
8803
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
8804
+ rb_raise(merror, "%s", error.what());
8805
+ }
8607
8806
  catch(qpid::messaging::TransactionError& error) {
8608
8807
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
8609
8808
  rb_raise(merror, "%s", error.what());
@@ -8734,6 +8933,10 @@ _wrap_Message_setContent__SWIG_1(int argc, VALUE *argv, VALUE self) {
8734
8933
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
8735
8934
  rb_raise(merror, "%s", error.what());
8736
8935
  }
8936
+ catch(qpid::messaging::TransactionUnknown& error) {
8937
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
8938
+ rb_raise(merror, "%s", error.what());
8939
+ }
8737
8940
  catch(qpid::messaging::TransactionError& error) {
8738
8941
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
8739
8942
  rb_raise(merror, "%s", error.what());
@@ -8902,6 +9105,10 @@ _wrap_Message_getContent(int argc, VALUE *argv, VALUE self) {
8902
9105
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
8903
9106
  rb_raise(merror, "%s", error.what());
8904
9107
  }
9108
+ catch(qpid::messaging::TransactionUnknown& error) {
9109
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
9110
+ rb_raise(merror, "%s", error.what());
9111
+ }
8905
9112
  catch(qpid::messaging::TransactionError& error) {
8906
9113
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
8907
9114
  rb_raise(merror, "%s", error.what());
@@ -9016,6 +9223,10 @@ _wrap_Message_getContentBytes(int argc, VALUE *argv, VALUE self) {
9016
9223
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
9017
9224
  rb_raise(merror, "%s", error.what());
9018
9225
  }
9226
+ catch(qpid::messaging::TransactionUnknown& error) {
9227
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
9228
+ rb_raise(merror, "%s", error.what());
9229
+ }
9019
9230
  catch(qpid::messaging::TransactionError& error) {
9020
9231
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
9021
9232
  rb_raise(merror, "%s", error.what());
@@ -9141,6 +9352,10 @@ _wrap_Message_setContentBytes(int argc, VALUE *argv, VALUE self) {
9141
9352
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
9142
9353
  rb_raise(merror, "%s", error.what());
9143
9354
  }
9355
+ catch(qpid::messaging::TransactionUnknown& error) {
9356
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
9357
+ rb_raise(merror, "%s", error.what());
9358
+ }
9144
9359
  catch(qpid::messaging::TransactionError& error) {
9145
9360
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
9146
9361
  rb_raise(merror, "%s", error.what());
@@ -9256,6 +9471,10 @@ _wrap_Message_getContentObject__SWIG_0(int argc, VALUE *argv, VALUE self) {
9256
9471
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
9257
9472
  rb_raise(merror, "%s", error.what());
9258
9473
  }
9474
+ catch(qpid::messaging::TransactionUnknown& error) {
9475
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
9476
+ rb_raise(merror, "%s", error.what());
9477
+ }
9259
9478
  catch(qpid::messaging::TransactionError& error) {
9260
9479
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
9261
9480
  rb_raise(merror, "%s", error.what());
@@ -9372,6 +9591,10 @@ _wrap_Message_getContentObject__SWIG_1(int argc, VALUE *argv, VALUE self) {
9372
9591
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
9373
9592
  rb_raise(merror, "%s", error.what());
9374
9593
  }
9594
+ catch(qpid::messaging::TransactionUnknown& error) {
9595
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
9596
+ rb_raise(merror, "%s", error.what());
9597
+ }
9375
9598
  catch(qpid::messaging::TransactionError& error) {
9376
9599
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
9377
9600
  rb_raise(merror, "%s", error.what());
@@ -9529,6 +9752,10 @@ _wrap_Message_setContentObject(int argc, VALUE *argv, VALUE self) {
9529
9752
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
9530
9753
  rb_raise(merror, "%s", error.what());
9531
9754
  }
9755
+ catch(qpid::messaging::TransactionUnknown& error) {
9756
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
9757
+ rb_raise(merror, "%s", error.what());
9758
+ }
9532
9759
  catch(qpid::messaging::TransactionError& error) {
9533
9760
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
9534
9761
  rb_raise(merror, "%s", error.what());
@@ -9648,6 +9875,10 @@ _wrap_Message_getContentSize(int argc, VALUE *argv, VALUE self) {
9648
9875
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
9649
9876
  rb_raise(merror, "%s", error.what());
9650
9877
  }
9878
+ catch(qpid::messaging::TransactionUnknown& error) {
9879
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
9880
+ rb_raise(merror, "%s", error.what());
9881
+ }
9651
9882
  catch(qpid::messaging::TransactionError& error) {
9652
9883
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
9653
9884
  rb_raise(merror, "%s", error.what());
@@ -9777,6 +10008,10 @@ _wrap_Message_setProperty(int argc, VALUE *argv, VALUE self) {
9777
10008
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
9778
10009
  rb_raise(merror, "%s", error.what());
9779
10010
  }
10011
+ catch(qpid::messaging::TransactionUnknown& error) {
10012
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
10013
+ rb_raise(merror, "%s", error.what());
10014
+ }
9780
10015
  catch(qpid::messaging::TransactionError& error) {
9781
10016
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
9782
10017
  rb_raise(merror, "%s", error.what());
@@ -9898,6 +10133,10 @@ _wrap_Message_getContentPtr(int argc, VALUE *argv, VALUE self) {
9898
10133
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
9899
10134
  rb_raise(merror, "%s", error.what());
9900
10135
  }
10136
+ catch(qpid::messaging::TransactionUnknown& error) {
10137
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
10138
+ rb_raise(merror, "%s", error.what());
10139
+ }
9901
10140
  catch(qpid::messaging::TransactionError& error) {
9902
10141
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
9903
10142
  rb_raise(merror, "%s", error.what());
@@ -10038,6 +10277,10 @@ _wrap_new_EncodingException(int argc, VALUE *argv, VALUE self) {
10038
10277
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
10039
10278
  rb_raise(merror, "%s", error.what());
10040
10279
  }
10280
+ catch(qpid::messaging::TransactionUnknown& error) {
10281
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
10282
+ rb_raise(merror, "%s", error.what());
10283
+ }
10041
10284
  catch(qpid::messaging::TransactionError& error) {
10042
10285
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
10043
10286
  rb_raise(merror, "%s", error.what());
@@ -10177,6 +10420,10 @@ _wrap_decode__SWIG_0(int argc, VALUE *argv, VALUE self) {
10177
10420
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
10178
10421
  rb_raise(merror, "%s", error.what());
10179
10422
  }
10423
+ catch(qpid::messaging::TransactionUnknown& error) {
10424
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
10425
+ rb_raise(merror, "%s", error.what());
10426
+ }
10180
10427
  catch(qpid::messaging::TransactionError& error) {
10181
10428
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
10182
10429
  rb_raise(merror, "%s", error.what());
@@ -10304,6 +10551,10 @@ _wrap_decode__SWIG_1(int argc, VALUE *argv, VALUE self) {
10304
10551
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
10305
10552
  rb_raise(merror, "%s", error.what());
10306
10553
  }
10554
+ catch(qpid::messaging::TransactionUnknown& error) {
10555
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
10556
+ rb_raise(merror, "%s", error.what());
10557
+ }
10307
10558
  catch(qpid::messaging::TransactionError& error) {
10308
10559
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
10309
10560
  rb_raise(merror, "%s", error.what());
@@ -10442,6 +10693,10 @@ _wrap_decode__SWIG_2(int argc, VALUE *argv, VALUE self) {
10442
10693
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
10443
10694
  rb_raise(merror, "%s", error.what());
10444
10695
  }
10696
+ catch(qpid::messaging::TransactionUnknown& error) {
10697
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
10698
+ rb_raise(merror, "%s", error.what());
10699
+ }
10445
10700
  catch(qpid::messaging::TransactionError& error) {
10446
10701
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
10447
10702
  rb_raise(merror, "%s", error.what());
@@ -10569,6 +10824,10 @@ _wrap_decode__SWIG_3(int argc, VALUE *argv, VALUE self) {
10569
10824
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
10570
10825
  rb_raise(merror, "%s", error.what());
10571
10826
  }
10827
+ catch(qpid::messaging::TransactionUnknown& error) {
10828
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
10829
+ rb_raise(merror, "%s", error.what());
10830
+ }
10572
10831
  catch(qpid::messaging::TransactionError& error) {
10573
10832
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
10574
10833
  rb_raise(merror, "%s", error.what());
@@ -10793,6 +11052,10 @@ _wrap_encode__SWIG_0(int argc, VALUE *argv, VALUE self) {
10793
11052
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
10794
11053
  rb_raise(merror, "%s", error.what());
10795
11054
  }
11055
+ catch(qpid::messaging::TransactionUnknown& error) {
11056
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
11057
+ rb_raise(merror, "%s", error.what());
11058
+ }
10796
11059
  catch(qpid::messaging::TransactionError& error) {
10797
11060
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
10798
11061
  rb_raise(merror, "%s", error.what());
@@ -10920,6 +11183,10 @@ _wrap_encode__SWIG_1(int argc, VALUE *argv, VALUE self) {
10920
11183
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
10921
11184
  rb_raise(merror, "%s", error.what());
10922
11185
  }
11186
+ catch(qpid::messaging::TransactionUnknown& error) {
11187
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
11188
+ rb_raise(merror, "%s", error.what());
11189
+ }
10923
11190
  catch(qpid::messaging::TransactionError& error) {
10924
11191
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
10925
11192
  rb_raise(merror, "%s", error.what());
@@ -11058,6 +11325,10 @@ _wrap_encode__SWIG_2(int argc, VALUE *argv, VALUE self) {
11058
11325
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
11059
11326
  rb_raise(merror, "%s", error.what());
11060
11327
  }
11328
+ catch(qpid::messaging::TransactionUnknown& error) {
11329
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
11330
+ rb_raise(merror, "%s", error.what());
11331
+ }
11061
11332
  catch(qpid::messaging::TransactionError& error) {
11062
11333
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
11063
11334
  rb_raise(merror, "%s", error.what());
@@ -11185,6 +11456,10 @@ _wrap_encode__SWIG_3(int argc, VALUE *argv, VALUE self) {
11185
11456
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
11186
11457
  rb_raise(merror, "%s", error.what());
11187
11458
  }
11459
+ catch(qpid::messaging::TransactionUnknown& error) {
11460
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
11461
+ rb_raise(merror, "%s", error.what());
11462
+ }
11188
11463
  catch(qpid::messaging::TransactionError& error) {
11189
11464
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
11190
11465
  rb_raise(merror, "%s", error.what());
@@ -11392,6 +11667,10 @@ _wrap_new_Receiver__SWIG_0(int argc, VALUE *argv, VALUE self) {
11392
11667
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
11393
11668
  rb_raise(merror, "%s", error.what());
11394
11669
  }
11670
+ catch(qpid::messaging::TransactionUnknown& error) {
11671
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
11672
+ rb_raise(merror, "%s", error.what());
11673
+ }
11395
11674
  catch(qpid::messaging::TransactionError& error) {
11396
11675
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
11397
11676
  rb_raise(merror, "%s", error.what());
@@ -11497,6 +11776,10 @@ _wrap_new_Receiver__SWIG_1(int argc, VALUE *argv, VALUE self) {
11497
11776
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
11498
11777
  rb_raise(merror, "%s", error.what());
11499
11778
  }
11779
+ catch(qpid::messaging::TransactionUnknown& error) {
11780
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
11781
+ rb_raise(merror, "%s", error.what());
11782
+ }
11500
11783
  catch(qpid::messaging::TransactionError& error) {
11501
11784
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
11502
11785
  rb_raise(merror, "%s", error.what());
@@ -11630,6 +11913,10 @@ _wrap_new_Receiver__SWIG_2(int argc, VALUE *argv, VALUE self) {
11630
11913
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
11631
11914
  rb_raise(merror, "%s", error.what());
11632
11915
  }
11916
+ catch(qpid::messaging::TransactionUnknown& error) {
11917
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
11918
+ rb_raise(merror, "%s", error.what());
11919
+ }
11633
11920
  catch(qpid::messaging::TransactionError& error) {
11634
11921
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
11635
11922
  rb_raise(merror, "%s", error.what());
@@ -11815,6 +12102,10 @@ _wrap_Receiver_get__SWIG_0(int argc, VALUE *argv, VALUE self) {
11815
12102
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
11816
12103
  rb_raise(merror, "%s", error.what());
11817
12104
  }
12105
+ catch(qpid::messaging::TransactionUnknown& error) {
12106
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
12107
+ rb_raise(merror, "%s", error.what());
12108
+ }
11818
12109
  catch(qpid::messaging::TransactionError& error) {
11819
12110
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
11820
12111
  rb_raise(merror, "%s", error.what());
@@ -11940,6 +12231,10 @@ _wrap_Receiver_get__SWIG_1(int argc, VALUE *argv, VALUE self) {
11940
12231
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
11941
12232
  rb_raise(merror, "%s", error.what());
11942
12233
  }
12234
+ catch(qpid::messaging::TransactionUnknown& error) {
12235
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
12236
+ rb_raise(merror, "%s", error.what());
12237
+ }
11943
12238
  catch(qpid::messaging::TransactionError& error) {
11944
12239
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
11945
12240
  rb_raise(merror, "%s", error.what());
@@ -12068,6 +12363,10 @@ _wrap_Receiver_get__SWIG_2(int argc, VALUE *argv, VALUE self) {
12068
12363
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
12069
12364
  rb_raise(merror, "%s", error.what());
12070
12365
  }
12366
+ catch(qpid::messaging::TransactionUnknown& error) {
12367
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
12368
+ rb_raise(merror, "%s", error.what());
12369
+ }
12071
12370
  catch(qpid::messaging::TransactionError& error) {
12072
12371
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
12073
12372
  rb_raise(merror, "%s", error.what());
@@ -12182,6 +12481,10 @@ _wrap_Receiver_get__SWIG_3(int argc, VALUE *argv, VALUE self) {
12182
12481
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
12183
12482
  rb_raise(merror, "%s", error.what());
12184
12483
  }
12484
+ catch(qpid::messaging::TransactionUnknown& error) {
12485
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
12486
+ rb_raise(merror, "%s", error.what());
12487
+ }
12185
12488
  catch(qpid::messaging::TransactionError& error) {
12186
12489
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
12187
12490
  rb_raise(merror, "%s", error.what());
@@ -12400,6 +12703,10 @@ _wrap_Receiver_fetch__SWIG_0(int argc, VALUE *argv, VALUE self) {
12400
12703
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
12401
12704
  rb_raise(merror, "%s", error.what());
12402
12705
  }
12706
+ catch(qpid::messaging::TransactionUnknown& error) {
12707
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
12708
+ rb_raise(merror, "%s", error.what());
12709
+ }
12403
12710
  catch(qpid::messaging::TransactionError& error) {
12404
12711
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
12405
12712
  rb_raise(merror, "%s", error.what());
@@ -12525,6 +12832,10 @@ _wrap_Receiver_fetch__SWIG_1(int argc, VALUE *argv, VALUE self) {
12525
12832
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
12526
12833
  rb_raise(merror, "%s", error.what());
12527
12834
  }
12835
+ catch(qpid::messaging::TransactionUnknown& error) {
12836
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
12837
+ rb_raise(merror, "%s", error.what());
12838
+ }
12528
12839
  catch(qpid::messaging::TransactionError& error) {
12529
12840
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
12530
12841
  rb_raise(merror, "%s", error.what());
@@ -12653,6 +12964,10 @@ _wrap_Receiver_fetch__SWIG_2(int argc, VALUE *argv, VALUE self) {
12653
12964
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
12654
12965
  rb_raise(merror, "%s", error.what());
12655
12966
  }
12967
+ catch(qpid::messaging::TransactionUnknown& error) {
12968
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
12969
+ rb_raise(merror, "%s", error.what());
12970
+ }
12656
12971
  catch(qpid::messaging::TransactionError& error) {
12657
12972
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
12658
12973
  rb_raise(merror, "%s", error.what());
@@ -12767,6 +13082,10 @@ _wrap_Receiver_fetch__SWIG_3(int argc, VALUE *argv, VALUE self) {
12767
13082
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
12768
13083
  rb_raise(merror, "%s", error.what());
12769
13084
  }
13085
+ catch(qpid::messaging::TransactionUnknown& error) {
13086
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
13087
+ rb_raise(merror, "%s", error.what());
13088
+ }
12770
13089
  catch(qpid::messaging::TransactionError& error) {
12771
13090
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
12772
13091
  rb_raise(merror, "%s", error.what());
@@ -12965,6 +13284,10 @@ _wrap_Receiver_setCapacity(int argc, VALUE *argv, VALUE self) {
12965
13284
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
12966
13285
  rb_raise(merror, "%s", error.what());
12967
13286
  }
13287
+ catch(qpid::messaging::TransactionUnknown& error) {
13288
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
13289
+ rb_raise(merror, "%s", error.what());
13290
+ }
12968
13291
  catch(qpid::messaging::TransactionError& error) {
12969
13292
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
12970
13293
  rb_raise(merror, "%s", error.what());
@@ -13078,6 +13401,10 @@ _wrap_Receiver_getCapacity(int argc, VALUE *argv, VALUE self) {
13078
13401
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13079
13402
  rb_raise(merror, "%s", error.what());
13080
13403
  }
13404
+ catch(qpid::messaging::TransactionUnknown& error) {
13405
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
13406
+ rb_raise(merror, "%s", error.what());
13407
+ }
13081
13408
  catch(qpid::messaging::TransactionError& error) {
13082
13409
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
13083
13410
  rb_raise(merror, "%s", error.what());
@@ -13194,6 +13521,10 @@ _wrap_Receiver_getAvailable(int argc, VALUE *argv, VALUE self) {
13194
13521
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13195
13522
  rb_raise(merror, "%s", error.what());
13196
13523
  }
13524
+ catch(qpid::messaging::TransactionUnknown& error) {
13525
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
13526
+ rb_raise(merror, "%s", error.what());
13527
+ }
13197
13528
  catch(qpid::messaging::TransactionError& error) {
13198
13529
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
13199
13530
  rb_raise(merror, "%s", error.what());
@@ -13310,6 +13641,10 @@ _wrap_Receiver_getUnsettled(int argc, VALUE *argv, VALUE self) {
13310
13641
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13311
13642
  rb_raise(merror, "%s", error.what());
13312
13643
  }
13644
+ catch(qpid::messaging::TransactionUnknown& error) {
13645
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
13646
+ rb_raise(merror, "%s", error.what());
13647
+ }
13313
13648
  catch(qpid::messaging::TransactionError& error) {
13314
13649
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
13315
13650
  rb_raise(merror, "%s", error.what());
@@ -13424,6 +13759,10 @@ _wrap_Receiver_close(int argc, VALUE *argv, VALUE self) {
13424
13759
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13425
13760
  rb_raise(merror, "%s", error.what());
13426
13761
  }
13762
+ catch(qpid::messaging::TransactionUnknown& error) {
13763
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
13764
+ rb_raise(merror, "%s", error.what());
13765
+ }
13427
13766
  catch(qpid::messaging::TransactionError& error) {
13428
13767
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
13429
13768
  rb_raise(merror, "%s", error.what());
@@ -13537,6 +13876,10 @@ _wrap_Receiver_isClosed(int argc, VALUE *argv, VALUE self) {
13537
13876
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13538
13877
  rb_raise(merror, "%s", error.what());
13539
13878
  }
13879
+ catch(qpid::messaging::TransactionUnknown& error) {
13880
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
13881
+ rb_raise(merror, "%s", error.what());
13882
+ }
13540
13883
  catch(qpid::messaging::TransactionError& error) {
13541
13884
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
13542
13885
  rb_raise(merror, "%s", error.what());
@@ -13651,6 +13994,10 @@ _wrap_Receiver_getName(int argc, VALUE *argv, VALUE self) {
13651
13994
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13652
13995
  rb_raise(merror, "%s", error.what());
13653
13996
  }
13997
+ catch(qpid::messaging::TransactionUnknown& error) {
13998
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
13999
+ rb_raise(merror, "%s", error.what());
14000
+ }
13654
14001
  catch(qpid::messaging::TransactionError& error) {
13655
14002
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
13656
14003
  rb_raise(merror, "%s", error.what());
@@ -13765,6 +14112,10 @@ _wrap_Receiver_getSession(int argc, VALUE *argv, VALUE self) {
13765
14112
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13766
14113
  rb_raise(merror, "%s", error.what());
13767
14114
  }
14115
+ catch(qpid::messaging::TransactionUnknown& error) {
14116
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
14117
+ rb_raise(merror, "%s", error.what());
14118
+ }
13768
14119
  catch(qpid::messaging::TransactionError& error) {
13769
14120
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
13770
14121
  rb_raise(merror, "%s", error.what());
@@ -13879,6 +14230,10 @@ _wrap_Receiver_getAddress(int argc, VALUE *argv, VALUE self) {
13879
14230
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13880
14231
  rb_raise(merror, "%s", error.what());
13881
14232
  }
14233
+ catch(qpid::messaging::TransactionUnknown& error) {
14234
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
14235
+ rb_raise(merror, "%s", error.what());
14236
+ }
13882
14237
  catch(qpid::messaging::TransactionError& error) {
13883
14238
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
13884
14239
  rb_raise(merror, "%s", error.what());
@@ -13995,6 +14350,10 @@ _wrap_new_Sender__SWIG_0(int argc, VALUE *argv, VALUE self) {
13995
14350
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
13996
14351
  rb_raise(merror, "%s", error.what());
13997
14352
  }
14353
+ catch(qpid::messaging::TransactionUnknown& error) {
14354
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
14355
+ rb_raise(merror, "%s", error.what());
14356
+ }
13998
14357
  catch(qpid::messaging::TransactionError& error) {
13999
14358
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
14000
14359
  rb_raise(merror, "%s", error.what());
@@ -14100,6 +14459,10 @@ _wrap_new_Sender__SWIG_1(int argc, VALUE *argv, VALUE self) {
14100
14459
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
14101
14460
  rb_raise(merror, "%s", error.what());
14102
14461
  }
14462
+ catch(qpid::messaging::TransactionUnknown& error) {
14463
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
14464
+ rb_raise(merror, "%s", error.what());
14465
+ }
14103
14466
  catch(qpid::messaging::TransactionError& error) {
14104
14467
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
14105
14468
  rb_raise(merror, "%s", error.what());
@@ -14233,6 +14596,10 @@ _wrap_new_Sender__SWIG_2(int argc, VALUE *argv, VALUE self) {
14233
14596
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
14234
14597
  rb_raise(merror, "%s", error.what());
14235
14598
  }
14599
+ catch(qpid::messaging::TransactionUnknown& error) {
14600
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
14601
+ rb_raise(merror, "%s", error.what());
14602
+ }
14236
14603
  catch(qpid::messaging::TransactionError& error) {
14237
14604
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
14238
14605
  rb_raise(merror, "%s", error.what());
@@ -14410,6 +14777,10 @@ _wrap_Sender_send__SWIG_0(int argc, VALUE *argv, VALUE self) {
14410
14777
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
14411
14778
  rb_raise(merror, "%s", error.what());
14412
14779
  }
14780
+ catch(qpid::messaging::TransactionUnknown& error) {
14781
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
14782
+ rb_raise(merror, "%s", error.what());
14783
+ }
14413
14784
  catch(qpid::messaging::TransactionError& error) {
14414
14785
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
14415
14786
  rb_raise(merror, "%s", error.what());
@@ -14532,6 +14903,10 @@ _wrap_Sender_send__SWIG_1(int argc, VALUE *argv, VALUE self) {
14532
14903
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
14533
14904
  rb_raise(merror, "%s", error.what());
14534
14905
  }
14906
+ catch(qpid::messaging::TransactionUnknown& error) {
14907
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
14908
+ rb_raise(merror, "%s", error.what());
14909
+ }
14535
14910
  catch(qpid::messaging::TransactionError& error) {
14536
14911
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
14537
14912
  rb_raise(merror, "%s", error.what());
@@ -14698,6 +15073,10 @@ _wrap_Sender_close(int argc, VALUE *argv, VALUE self) {
14698
15073
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
14699
15074
  rb_raise(merror, "%s", error.what());
14700
15075
  }
15076
+ catch(qpid::messaging::TransactionUnknown& error) {
15077
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
15078
+ rb_raise(merror, "%s", error.what());
15079
+ }
14701
15080
  catch(qpid::messaging::TransactionError& error) {
14702
15081
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
14703
15082
  rb_raise(merror, "%s", error.what());
@@ -14816,6 +15195,10 @@ _wrap_Sender_setCapacity(int argc, VALUE *argv, VALUE self) {
14816
15195
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
14817
15196
  rb_raise(merror, "%s", error.what());
14818
15197
  }
15198
+ catch(qpid::messaging::TransactionUnknown& error) {
15199
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
15200
+ rb_raise(merror, "%s", error.what());
15201
+ }
14819
15202
  catch(qpid::messaging::TransactionError& error) {
14820
15203
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
14821
15204
  rb_raise(merror, "%s", error.what());
@@ -14929,6 +15312,10 @@ _wrap_Sender_getCapacity(int argc, VALUE *argv, VALUE self) {
14929
15312
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
14930
15313
  rb_raise(merror, "%s", error.what());
14931
15314
  }
15315
+ catch(qpid::messaging::TransactionUnknown& error) {
15316
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
15317
+ rb_raise(merror, "%s", error.what());
15318
+ }
14932
15319
  catch(qpid::messaging::TransactionError& error) {
14933
15320
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
14934
15321
  rb_raise(merror, "%s", error.what());
@@ -15045,6 +15432,10 @@ _wrap_Sender_getUnsettled(int argc, VALUE *argv, VALUE self) {
15045
15432
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
15046
15433
  rb_raise(merror, "%s", error.what());
15047
15434
  }
15435
+ catch(qpid::messaging::TransactionUnknown& error) {
15436
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
15437
+ rb_raise(merror, "%s", error.what());
15438
+ }
15048
15439
  catch(qpid::messaging::TransactionError& error) {
15049
15440
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
15050
15441
  rb_raise(merror, "%s", error.what());
@@ -15161,6 +15552,10 @@ _wrap_Sender_getAvailable(int argc, VALUE *argv, VALUE self) {
15161
15552
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
15162
15553
  rb_raise(merror, "%s", error.what());
15163
15554
  }
15555
+ catch(qpid::messaging::TransactionUnknown& error) {
15556
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
15557
+ rb_raise(merror, "%s", error.what());
15558
+ }
15164
15559
  catch(qpid::messaging::TransactionError& error) {
15165
15560
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
15166
15561
  rb_raise(merror, "%s", error.what());
@@ -15277,6 +15672,10 @@ _wrap_Sender_getName(int argc, VALUE *argv, VALUE self) {
15277
15672
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
15278
15673
  rb_raise(merror, "%s", error.what());
15279
15674
  }
15675
+ catch(qpid::messaging::TransactionUnknown& error) {
15676
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
15677
+ rb_raise(merror, "%s", error.what());
15678
+ }
15280
15679
  catch(qpid::messaging::TransactionError& error) {
15281
15680
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
15282
15681
  rb_raise(merror, "%s", error.what());
@@ -15391,6 +15790,10 @@ _wrap_Sender_getSession(int argc, VALUE *argv, VALUE self) {
15391
15790
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
15392
15791
  rb_raise(merror, "%s", error.what());
15393
15792
  }
15793
+ catch(qpid::messaging::TransactionUnknown& error) {
15794
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
15795
+ rb_raise(merror, "%s", error.what());
15796
+ }
15394
15797
  catch(qpid::messaging::TransactionError& error) {
15395
15798
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
15396
15799
  rb_raise(merror, "%s", error.what());
@@ -15505,6 +15908,10 @@ _wrap_Sender_getAddress(int argc, VALUE *argv, VALUE self) {
15505
15908
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
15506
15909
  rb_raise(merror, "%s", error.what());
15507
15910
  }
15911
+ catch(qpid::messaging::TransactionUnknown& error) {
15912
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
15913
+ rb_raise(merror, "%s", error.what());
15914
+ }
15508
15915
  catch(qpid::messaging::TransactionError& error) {
15509
15916
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
15510
15917
  rb_raise(merror, "%s", error.what());
@@ -15621,6 +16028,10 @@ _wrap_new_Session__SWIG_0(int argc, VALUE *argv, VALUE self) {
15621
16028
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
15622
16029
  rb_raise(merror, "%s", error.what());
15623
16030
  }
16031
+ catch(qpid::messaging::TransactionUnknown& error) {
16032
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
16033
+ rb_raise(merror, "%s", error.what());
16034
+ }
15624
16035
  catch(qpid::messaging::TransactionError& error) {
15625
16036
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
15626
16037
  rb_raise(merror, "%s", error.what());
@@ -15726,6 +16137,10 @@ _wrap_new_Session__SWIG_1(int argc, VALUE *argv, VALUE self) {
15726
16137
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
15727
16138
  rb_raise(merror, "%s", error.what());
15728
16139
  }
16140
+ catch(qpid::messaging::TransactionUnknown& error) {
16141
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
16142
+ rb_raise(merror, "%s", error.what());
16143
+ }
15729
16144
  catch(qpid::messaging::TransactionError& error) {
15730
16145
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
15731
16146
  rb_raise(merror, "%s", error.what());
@@ -15859,6 +16274,10 @@ _wrap_new_Session__SWIG_2(int argc, VALUE *argv, VALUE self) {
15859
16274
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
15860
16275
  rb_raise(merror, "%s", error.what());
15861
16276
  }
16277
+ catch(qpid::messaging::TransactionUnknown& error) {
16278
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
16279
+ rb_raise(merror, "%s", error.what());
16280
+ }
15862
16281
  catch(qpid::messaging::TransactionError& error) {
15863
16282
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
15864
16283
  rb_raise(merror, "%s", error.what());
@@ -16017,6 +16436,10 @@ _wrap_Session_close(int argc, VALUE *argv, VALUE self) {
16017
16436
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
16018
16437
  rb_raise(merror, "%s", error.what());
16019
16438
  }
16439
+ catch(qpid::messaging::TransactionUnknown& error) {
16440
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
16441
+ rb_raise(merror, "%s", error.what());
16442
+ }
16020
16443
  catch(qpid::messaging::TransactionError& error) {
16021
16444
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
16022
16445
  rb_raise(merror, "%s", error.what());
@@ -16128,6 +16551,10 @@ _wrap_Session_commit(int argc, VALUE *argv, VALUE self) {
16128
16551
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
16129
16552
  rb_raise(merror, "%s", error.what());
16130
16553
  }
16554
+ catch(qpid::messaging::TransactionUnknown& error) {
16555
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
16556
+ rb_raise(merror, "%s", error.what());
16557
+ }
16131
16558
  catch(qpid::messaging::TransactionError& error) {
16132
16559
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
16133
16560
  rb_raise(merror, "%s", error.what());
@@ -16239,6 +16666,10 @@ _wrap_Session_rollback(int argc, VALUE *argv, VALUE self) {
16239
16666
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
16240
16667
  rb_raise(merror, "%s", error.what());
16241
16668
  }
16669
+ catch(qpid::messaging::TransactionUnknown& error) {
16670
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
16671
+ rb_raise(merror, "%s", error.what());
16672
+ }
16242
16673
  catch(qpid::messaging::TransactionError& error) {
16243
16674
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
16244
16675
  rb_raise(merror, "%s", error.what());
@@ -16358,6 +16789,10 @@ _wrap_Session_acknowledge__SWIG_0(int argc, VALUE *argv, VALUE self) {
16358
16789
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
16359
16790
  rb_raise(merror, "%s", error.what());
16360
16791
  }
16792
+ catch(qpid::messaging::TransactionUnknown& error) {
16793
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
16794
+ rb_raise(merror, "%s", error.what());
16795
+ }
16361
16796
  catch(qpid::messaging::TransactionError& error) {
16362
16797
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
16363
16798
  rb_raise(merror, "%s", error.what());
@@ -16469,6 +16904,10 @@ _wrap_Session_acknowledge__SWIG_1(int argc, VALUE *argv, VALUE self) {
16469
16904
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
16470
16905
  rb_raise(merror, "%s", error.what());
16471
16906
  }
16907
+ catch(qpid::messaging::TransactionUnknown& error) {
16908
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
16909
+ rb_raise(merror, "%s", error.what());
16910
+ }
16472
16911
  catch(qpid::messaging::TransactionError& error) {
16473
16912
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
16474
16913
  rb_raise(merror, "%s", error.what());
@@ -16599,6 +17038,10 @@ _wrap_Session_acknowledge__SWIG_2(int argc, VALUE *argv, VALUE self) {
16599
17038
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
16600
17039
  rb_raise(merror, "%s", error.what());
16601
17040
  }
17041
+ catch(qpid::messaging::TransactionUnknown& error) {
17042
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
17043
+ rb_raise(merror, "%s", error.what());
17044
+ }
16602
17045
  catch(qpid::messaging::TransactionError& error) {
16603
17046
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
16604
17047
  rb_raise(merror, "%s", error.what());
@@ -16721,6 +17164,10 @@ _wrap_Session_acknowledge__SWIG_3(int argc, VALUE *argv, VALUE self) {
16721
17164
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
16722
17165
  rb_raise(merror, "%s", error.what());
16723
17166
  }
17167
+ catch(qpid::messaging::TransactionUnknown& error) {
17168
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
17169
+ rb_raise(merror, "%s", error.what());
17170
+ }
16724
17171
  catch(qpid::messaging::TransactionError& error) {
16725
17172
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
16726
17173
  rb_raise(merror, "%s", error.what());
@@ -16932,6 +17379,10 @@ _wrap_Session_acknowledgeUpTo__SWIG_0(int argc, VALUE *argv, VALUE self) {
16932
17379
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
16933
17380
  rb_raise(merror, "%s", error.what());
16934
17381
  }
17382
+ catch(qpid::messaging::TransactionUnknown& error) {
17383
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
17384
+ rb_raise(merror, "%s", error.what());
17385
+ }
16935
17386
  catch(qpid::messaging::TransactionError& error) {
16936
17387
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
16937
17388
  rb_raise(merror, "%s", error.what());
@@ -17054,6 +17505,10 @@ _wrap_Session_acknowledgeUpTo__SWIG_1(int argc, VALUE *argv, VALUE self) {
17054
17505
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
17055
17506
  rb_raise(merror, "%s", error.what());
17056
17507
  }
17508
+ catch(qpid::messaging::TransactionUnknown& error) {
17509
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
17510
+ rb_raise(merror, "%s", error.what());
17511
+ }
17057
17512
  catch(qpid::messaging::TransactionError& error) {
17058
17513
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
17059
17514
  rb_raise(merror, "%s", error.what());
@@ -17240,6 +17695,10 @@ _wrap_Session_reject(int argc, VALUE *argv, VALUE self) {
17240
17695
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
17241
17696
  rb_raise(merror, "%s", error.what());
17242
17697
  }
17698
+ catch(qpid::messaging::TransactionUnknown& error) {
17699
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
17700
+ rb_raise(merror, "%s", error.what());
17701
+ }
17243
17702
  catch(qpid::messaging::TransactionError& error) {
17244
17703
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
17245
17704
  rb_raise(merror, "%s", error.what());
@@ -17362,6 +17821,10 @@ _wrap_Session_release(int argc, VALUE *argv, VALUE self) {
17362
17821
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
17363
17822
  rb_raise(merror, "%s", error.what());
17364
17823
  }
17824
+ catch(qpid::messaging::TransactionUnknown& error) {
17825
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
17826
+ rb_raise(merror, "%s", error.what());
17827
+ }
17365
17828
  catch(qpid::messaging::TransactionError& error) {
17366
17829
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
17367
17830
  rb_raise(merror, "%s", error.what());
@@ -17481,6 +17944,10 @@ _wrap_Session_sync__SWIG_0(int argc, VALUE *argv, VALUE self) {
17481
17944
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
17482
17945
  rb_raise(merror, "%s", error.what());
17483
17946
  }
17947
+ catch(qpid::messaging::TransactionUnknown& error) {
17948
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
17949
+ rb_raise(merror, "%s", error.what());
17950
+ }
17484
17951
  catch(qpid::messaging::TransactionError& error) {
17485
17952
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
17486
17953
  rb_raise(merror, "%s", error.what());
@@ -17592,6 +18059,10 @@ _wrap_Session_sync__SWIG_1(int argc, VALUE *argv, VALUE self) {
17592
18059
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
17593
18060
  rb_raise(merror, "%s", error.what());
17594
18061
  }
18062
+ catch(qpid::messaging::TransactionUnknown& error) {
18063
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
18064
+ rb_raise(merror, "%s", error.what());
18065
+ }
17595
18066
  catch(qpid::messaging::TransactionError& error) {
17596
18067
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
17597
18068
  rb_raise(merror, "%s", error.what());
@@ -17750,6 +18221,10 @@ _wrap_Session_getReceivable(int argc, VALUE *argv, VALUE self) {
17750
18221
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
17751
18222
  rb_raise(merror, "%s", error.what());
17752
18223
  }
18224
+ catch(qpid::messaging::TransactionUnknown& error) {
18225
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
18226
+ rb_raise(merror, "%s", error.what());
18227
+ }
17753
18228
  catch(qpid::messaging::TransactionError& error) {
17754
18229
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
17755
18230
  rb_raise(merror, "%s", error.what());
@@ -17866,6 +18341,10 @@ _wrap_Session_getUnsettledAcks(int argc, VALUE *argv, VALUE self) {
17866
18341
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
17867
18342
  rb_raise(merror, "%s", error.what());
17868
18343
  }
18344
+ catch(qpid::messaging::TransactionUnknown& error) {
18345
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
18346
+ rb_raise(merror, "%s", error.what());
18347
+ }
17869
18348
  catch(qpid::messaging::TransactionError& error) {
17870
18349
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
17871
18350
  rb_raise(merror, "%s", error.what());
@@ -18007,6 +18486,10 @@ _wrap_Session_nextReceiver__SWIG_0(int argc, VALUE *argv, VALUE self) {
18007
18486
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
18008
18487
  rb_raise(merror, "%s", error.what());
18009
18488
  }
18489
+ catch(qpid::messaging::TransactionUnknown& error) {
18490
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
18491
+ rb_raise(merror, "%s", error.what());
18492
+ }
18010
18493
  catch(qpid::messaging::TransactionError& error) {
18011
18494
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
18012
18495
  rb_raise(merror, "%s", error.what());
@@ -18132,6 +18615,10 @@ _wrap_Session_nextReceiver__SWIG_1(int argc, VALUE *argv, VALUE self) {
18132
18615
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
18133
18616
  rb_raise(merror, "%s", error.what());
18134
18617
  }
18618
+ catch(qpid::messaging::TransactionUnknown& error) {
18619
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
18620
+ rb_raise(merror, "%s", error.what());
18621
+ }
18135
18622
  catch(qpid::messaging::TransactionError& error) {
18136
18623
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
18137
18624
  rb_raise(merror, "%s", error.what());
@@ -18260,6 +18747,10 @@ _wrap_Session_nextReceiver__SWIG_2(int argc, VALUE *argv, VALUE self) {
18260
18747
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
18261
18748
  rb_raise(merror, "%s", error.what());
18262
18749
  }
18750
+ catch(qpid::messaging::TransactionUnknown& error) {
18751
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
18752
+ rb_raise(merror, "%s", error.what());
18753
+ }
18263
18754
  catch(qpid::messaging::TransactionError& error) {
18264
18755
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
18265
18756
  rb_raise(merror, "%s", error.what());
@@ -18374,6 +18865,10 @@ _wrap_Session_nextReceiver__SWIG_3(int argc, VALUE *argv, VALUE self) {
18374
18865
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
18375
18866
  rb_raise(merror, "%s", error.what());
18376
18867
  }
18868
+ catch(qpid::messaging::TransactionUnknown& error) {
18869
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
18870
+ rb_raise(merror, "%s", error.what());
18871
+ }
18377
18872
  catch(qpid::messaging::TransactionError& error) {
18378
18873
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
18379
18874
  rb_raise(merror, "%s", error.what());
@@ -18578,6 +19073,10 @@ _wrap_Session_createSender__SWIG_0(int argc, VALUE *argv, VALUE self) {
18578
19073
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
18579
19074
  rb_raise(merror, "%s", error.what());
18580
19075
  }
19076
+ catch(qpid::messaging::TransactionUnknown& error) {
19077
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
19078
+ rb_raise(merror, "%s", error.what());
19079
+ }
18581
19080
  catch(qpid::messaging::TransactionError& error) {
18582
19081
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
18583
19082
  rb_raise(merror, "%s", error.what());
@@ -18705,6 +19204,10 @@ _wrap_Session_createSender__SWIG_1(int argc, VALUE *argv, VALUE self) {
18705
19204
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
18706
19205
  rb_raise(merror, "%s", error.what());
18707
19206
  }
19207
+ catch(qpid::messaging::TransactionUnknown& error) {
19208
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
19209
+ rb_raise(merror, "%s", error.what());
19210
+ }
18708
19211
  catch(qpid::messaging::TransactionError& error) {
18709
19212
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
18710
19213
  rb_raise(merror, "%s", error.what());
@@ -18880,6 +19383,10 @@ _wrap_Session_createReceiver__SWIG_0(int argc, VALUE *argv, VALUE self) {
18880
19383
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
18881
19384
  rb_raise(merror, "%s", error.what());
18882
19385
  }
19386
+ catch(qpid::messaging::TransactionUnknown& error) {
19387
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
19388
+ rb_raise(merror, "%s", error.what());
19389
+ }
18883
19390
  catch(qpid::messaging::TransactionError& error) {
18884
19391
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
18885
19392
  rb_raise(merror, "%s", error.what());
@@ -19007,6 +19514,10 @@ _wrap_Session_createReceiver__SWIG_1(int argc, VALUE *argv, VALUE self) {
19007
19514
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19008
19515
  rb_raise(merror, "%s", error.what());
19009
19516
  }
19517
+ catch(qpid::messaging::TransactionUnknown& error) {
19518
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
19519
+ rb_raise(merror, "%s", error.what());
19520
+ }
19010
19521
  catch(qpid::messaging::TransactionError& error) {
19011
19522
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19012
19523
  rb_raise(merror, "%s", error.what());
@@ -19184,6 +19695,10 @@ _wrap_Session_getSender(int argc, VALUE *argv, VALUE self) {
19184
19695
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19185
19696
  rb_raise(merror, "%s", error.what());
19186
19697
  }
19698
+ catch(qpid::messaging::TransactionUnknown& error) {
19699
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
19700
+ rb_raise(merror, "%s", error.what());
19701
+ }
19187
19702
  catch(qpid::messaging::TransactionError& error) {
19188
19703
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19189
19704
  rb_raise(merror, "%s", error.what());
@@ -19313,6 +19828,10 @@ _wrap_Session_getReceiver(int argc, VALUE *argv, VALUE self) {
19313
19828
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19314
19829
  rb_raise(merror, "%s", error.what());
19315
19830
  }
19831
+ catch(qpid::messaging::TransactionUnknown& error) {
19832
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
19833
+ rb_raise(merror, "%s", error.what());
19834
+ }
19316
19835
  catch(qpid::messaging::TransactionError& error) {
19317
19836
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19318
19837
  rb_raise(merror, "%s", error.what());
@@ -19429,6 +19948,10 @@ _wrap_Session_getConnection(int argc, VALUE *argv, VALUE self) {
19429
19948
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19430
19949
  rb_raise(merror, "%s", error.what());
19431
19950
  }
19951
+ catch(qpid::messaging::TransactionUnknown& error) {
19952
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
19953
+ rb_raise(merror, "%s", error.what());
19954
+ }
19432
19955
  catch(qpid::messaging::TransactionError& error) {
19433
19956
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19434
19957
  rb_raise(merror, "%s", error.what());
@@ -19543,6 +20066,10 @@ _wrap_Session_hasError(int argc, VALUE *argv, VALUE self) {
19543
20066
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19544
20067
  rb_raise(merror, "%s", error.what());
19545
20068
  }
20069
+ catch(qpid::messaging::TransactionUnknown& error) {
20070
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
20071
+ rb_raise(merror, "%s", error.what());
20072
+ }
19546
20073
  catch(qpid::messaging::TransactionError& error) {
19547
20074
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19548
20075
  rb_raise(merror, "%s", error.what());
@@ -19655,6 +20182,10 @@ _wrap_Session_checkError(int argc, VALUE *argv, VALUE self) {
19655
20182
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19656
20183
  rb_raise(merror, "%s", error.what());
19657
20184
  }
20185
+ catch(qpid::messaging::TransactionUnknown& error) {
20186
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
20187
+ rb_raise(merror, "%s", error.what());
20188
+ }
19658
20189
  catch(qpid::messaging::TransactionError& error) {
19659
20190
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19660
20191
  rb_raise(merror, "%s", error.what());
@@ -19770,6 +20301,10 @@ _wrap_new_Connection__SWIG_0(int argc, VALUE *argv, VALUE self) {
19770
20301
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19771
20302
  rb_raise(merror, "%s", error.what());
19772
20303
  }
20304
+ catch(qpid::messaging::TransactionUnknown& error) {
20305
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
20306
+ rb_raise(merror, "%s", error.what());
20307
+ }
19773
20308
  catch(qpid::messaging::TransactionError& error) {
19774
20309
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19775
20310
  rb_raise(merror, "%s", error.what());
@@ -19886,6 +20421,10 @@ _wrap_new_Connection__SWIG_1(int argc, VALUE *argv, VALUE self) {
19886
20421
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19887
20422
  rb_raise(merror, "%s", error.what());
19888
20423
  }
20424
+ catch(qpid::messaging::TransactionUnknown& error) {
20425
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
20426
+ rb_raise(merror, "%s", error.what());
20427
+ }
19889
20428
  catch(qpid::messaging::TransactionError& error) {
19890
20429
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19891
20430
  rb_raise(merror, "%s", error.what());
@@ -19991,6 +20530,10 @@ _wrap_new_Connection__SWIG_2(int argc, VALUE *argv, VALUE self) {
19991
20530
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
19992
20531
  rb_raise(merror, "%s", error.what());
19993
20532
  }
20533
+ catch(qpid::messaging::TransactionUnknown& error) {
20534
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
20535
+ rb_raise(merror, "%s", error.what());
20536
+ }
19994
20537
  catch(qpid::messaging::TransactionError& error) {
19995
20538
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
19996
20539
  rb_raise(merror, "%s", error.what());
@@ -20114,6 +20657,10 @@ _wrap_new_Connection__SWIG_3(int argc, VALUE *argv, VALUE self) {
20114
20657
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
20115
20658
  rb_raise(merror, "%s", error.what());
20116
20659
  }
20660
+ catch(qpid::messaging::TransactionUnknown& error) {
20661
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
20662
+ rb_raise(merror, "%s", error.what());
20663
+ }
20117
20664
  catch(qpid::messaging::TransactionError& error) {
20118
20665
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
20119
20666
  rb_raise(merror, "%s", error.what());
@@ -20240,6 +20787,10 @@ _wrap_new_Connection__SWIG_4(int argc, VALUE *argv, VALUE self) {
20240
20787
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
20241
20788
  rb_raise(merror, "%s", error.what());
20242
20789
  }
20790
+ catch(qpid::messaging::TransactionUnknown& error) {
20791
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
20792
+ rb_raise(merror, "%s", error.what());
20793
+ }
20243
20794
  catch(qpid::messaging::TransactionError& error) {
20244
20795
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
20245
20796
  rb_raise(merror, "%s", error.what());
@@ -20390,6 +20941,10 @@ _wrap_new_Connection__SWIG_5(int argc, VALUE *argv, VALUE self) {
20390
20941
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
20391
20942
  rb_raise(merror, "%s", error.what());
20392
20943
  }
20944
+ catch(qpid::messaging::TransactionUnknown& error) {
20945
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
20946
+ rb_raise(merror, "%s", error.what());
20947
+ }
20393
20948
  catch(qpid::messaging::TransactionError& error) {
20394
20949
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
20395
20950
  rb_raise(merror, "%s", error.what());
@@ -20605,6 +21160,10 @@ _wrap_Connection_setOption(int argc, VALUE *argv, VALUE self) {
20605
21160
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
20606
21161
  rb_raise(merror, "%s", error.what());
20607
21162
  }
21163
+ catch(qpid::messaging::TransactionUnknown& error) {
21164
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
21165
+ rb_raise(merror, "%s", error.what());
21166
+ }
20608
21167
  catch(qpid::messaging::TransactionError& error) {
20609
21168
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
20610
21169
  rb_raise(merror, "%s", error.what());
@@ -20724,6 +21283,10 @@ _wrap_Connection_open(int argc, VALUE *argv, VALUE self) {
20724
21283
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
20725
21284
  rb_raise(merror, "%s", error.what());
20726
21285
  }
21286
+ catch(qpid::messaging::TransactionUnknown& error) {
21287
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
21288
+ rb_raise(merror, "%s", error.what());
21289
+ }
20727
21290
  catch(qpid::messaging::TransactionError& error) {
20728
21291
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
20729
21292
  rb_raise(merror, "%s", error.what());
@@ -20837,6 +21400,10 @@ _wrap_Connection_isOpen__SWIG_0(int argc, VALUE *argv, VALUE self) {
20837
21400
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
20838
21401
  rb_raise(merror, "%s", error.what());
20839
21402
  }
21403
+ catch(qpid::messaging::TransactionUnknown& error) {
21404
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
21405
+ rb_raise(merror, "%s", error.what());
21406
+ }
20840
21407
  catch(qpid::messaging::TransactionError& error) {
20841
21408
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
20842
21409
  rb_raise(merror, "%s", error.what());
@@ -20951,6 +21518,10 @@ _wrap_Connection_isOpen__SWIG_1(int argc, VALUE *argv, VALUE self) {
20951
21518
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
20952
21519
  rb_raise(merror, "%s", error.what());
20953
21520
  }
21521
+ catch(qpid::messaging::TransactionUnknown& error) {
21522
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
21523
+ rb_raise(merror, "%s", error.what());
21524
+ }
20954
21525
  catch(qpid::messaging::TransactionError& error) {
20955
21526
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
20956
21527
  rb_raise(merror, "%s", error.what());
@@ -21115,6 +21686,10 @@ _wrap_Connection_reconnect__SWIG_0(int argc, VALUE *argv, VALUE self) {
21115
21686
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
21116
21687
  rb_raise(merror, "%s", error.what());
21117
21688
  }
21689
+ catch(qpid::messaging::TransactionUnknown& error) {
21690
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
21691
+ rb_raise(merror, "%s", error.what());
21692
+ }
21118
21693
  catch(qpid::messaging::TransactionError& error) {
21119
21694
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
21120
21695
  rb_raise(merror, "%s", error.what());
@@ -21228,6 +21803,10 @@ _wrap_Connection_reconnect__SWIG_1(int argc, VALUE *argv, VALUE self) {
21228
21803
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
21229
21804
  rb_raise(merror, "%s", error.what());
21230
21805
  }
21806
+ catch(qpid::messaging::TransactionUnknown& error) {
21807
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
21808
+ rb_raise(merror, "%s", error.what());
21809
+ }
21231
21810
  catch(qpid::messaging::TransactionError& error) {
21232
21811
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
21233
21812
  rb_raise(merror, "%s", error.what());
@@ -21384,6 +21963,10 @@ _wrap_Connection_getUrl(int argc, VALUE *argv, VALUE self) {
21384
21963
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
21385
21964
  rb_raise(merror, "%s", error.what());
21386
21965
  }
21966
+ catch(qpid::messaging::TransactionUnknown& error) {
21967
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
21968
+ rb_raise(merror, "%s", error.what());
21969
+ }
21387
21970
  catch(qpid::messaging::TransactionError& error) {
21388
21971
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
21389
21972
  rb_raise(merror, "%s", error.what());
@@ -21496,6 +22079,10 @@ _wrap_Connection_close(int argc, VALUE *argv, VALUE self) {
21496
22079
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
21497
22080
  rb_raise(merror, "%s", error.what());
21498
22081
  }
22082
+ catch(qpid::messaging::TransactionUnknown& error) {
22083
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
22084
+ rb_raise(merror, "%s", error.what());
22085
+ }
21499
22086
  catch(qpid::messaging::TransactionError& error) {
21500
22087
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
21501
22088
  rb_raise(merror, "%s", error.what());
@@ -21622,6 +22209,10 @@ _wrap_Connection_createTransactionalSession__SWIG_0(int argc, VALUE *argv, VALUE
21622
22209
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
21623
22210
  rb_raise(merror, "%s", error.what());
21624
22211
  }
22212
+ catch(qpid::messaging::TransactionUnknown& error) {
22213
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
22214
+ rb_raise(merror, "%s", error.what());
22215
+ }
21625
22216
  catch(qpid::messaging::TransactionError& error) {
21626
22217
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
21627
22218
  rb_raise(merror, "%s", error.what());
@@ -21738,6 +22329,10 @@ _wrap_Connection_createTransactionalSession__SWIG_1(int argc, VALUE *argv, VALUE
21738
22329
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
21739
22330
  rb_raise(merror, "%s", error.what());
21740
22331
  }
22332
+ catch(qpid::messaging::TransactionUnknown& error) {
22333
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
22334
+ rb_raise(merror, "%s", error.what());
22335
+ }
21741
22336
  catch(qpid::messaging::TransactionError& error) {
21742
22337
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
21743
22338
  rb_raise(merror, "%s", error.what());
@@ -21908,6 +22503,10 @@ _wrap_Connection_createSession__SWIG_0(int argc, VALUE *argv, VALUE self) {
21908
22503
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
21909
22504
  rb_raise(merror, "%s", error.what());
21910
22505
  }
22506
+ catch(qpid::messaging::TransactionUnknown& error) {
22507
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
22508
+ rb_raise(merror, "%s", error.what());
22509
+ }
21911
22510
  catch(qpid::messaging::TransactionError& error) {
21912
22511
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
21913
22512
  rb_raise(merror, "%s", error.what());
@@ -22024,6 +22623,10 @@ _wrap_Connection_createSession__SWIG_1(int argc, VALUE *argv, VALUE self) {
22024
22623
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
22025
22624
  rb_raise(merror, "%s", error.what());
22026
22625
  }
22626
+ catch(qpid::messaging::TransactionUnknown& error) {
22627
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
22628
+ rb_raise(merror, "%s", error.what());
22629
+ }
22027
22630
  catch(qpid::messaging::TransactionError& error) {
22028
22631
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
22029
22632
  rb_raise(merror, "%s", error.what());
@@ -22194,6 +22797,10 @@ _wrap_Connection_getSession(int argc, VALUE *argv, VALUE self) {
22194
22797
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
22195
22798
  rb_raise(merror, "%s", error.what());
22196
22799
  }
22800
+ catch(qpid::messaging::TransactionUnknown& error) {
22801
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
22802
+ rb_raise(merror, "%s", error.what());
22803
+ }
22197
22804
  catch(qpid::messaging::TransactionError& error) {
22198
22805
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
22199
22806
  rb_raise(merror, "%s", error.what());
@@ -22310,6 +22917,10 @@ _wrap_Connection_getAuthenticatedUsername(int argc, VALUE *argv, VALUE self) {
22310
22917
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
22311
22918
  rb_raise(merror, "%s", error.what());
22312
22919
  }
22920
+ catch(qpid::messaging::TransactionUnknown& error) {
22921
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
22922
+ rb_raise(merror, "%s", error.what());
22923
+ }
22313
22924
  catch(qpid::messaging::TransactionError& error) {
22314
22925
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
22315
22926
  rb_raise(merror, "%s", error.what());
@@ -22446,6 +23057,10 @@ _wrap_new_FailoverUpdates(int argc, VALUE *argv, VALUE self) {
22446
23057
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
22447
23058
  rb_raise(merror, "%s", error.what());
22448
23059
  }
23060
+ catch(qpid::messaging::TransactionUnknown& error) {
23061
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
23062
+ rb_raise(merror, "%s", error.what());
23063
+ }
22449
23064
  catch(qpid::messaging::TransactionError& error) {
22450
23065
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
22451
23066
  rb_raise(merror, "%s", error.what());
@@ -22624,6 +23239,10 @@ _wrap_LoggerOutput_log(int argc, VALUE *argv, VALUE self) {
22624
23239
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
22625
23240
  rb_raise(merror, "%s", error.what());
22626
23241
  }
23242
+ catch(qpid::messaging::TransactionUnknown& error) {
23243
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
23244
+ rb_raise(merror, "%s", error.what());
23245
+ }
22627
23246
  catch(qpid::messaging::TransactionError& error) {
22628
23247
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
22629
23248
  rb_raise(merror, "%s", error.what());
@@ -22764,6 +23383,10 @@ _wrap_Logger_configure__SWIG_0(int argc, VALUE *argv, VALUE self) {
22764
23383
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
22765
23384
  rb_raise(merror, "%s", error.what());
22766
23385
  }
23386
+ catch(qpid::messaging::TransactionUnknown& error) {
23387
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
23388
+ rb_raise(merror, "%s", error.what());
23389
+ }
22767
23390
  catch(qpid::messaging::TransactionError& error) {
22768
23391
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
22769
23392
  rb_raise(merror, "%s", error.what());
@@ -22885,6 +23508,10 @@ _wrap_Logger_configure__SWIG_1(int argc, VALUE *argv, VALUE self) {
22885
23508
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
22886
23509
  rb_raise(merror, "%s", error.what());
22887
23510
  }
23511
+ catch(qpid::messaging::TransactionUnknown& error) {
23512
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
23513
+ rb_raise(merror, "%s", error.what());
23514
+ }
22888
23515
  catch(qpid::messaging::TransactionError& error) {
22889
23516
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
22890
23517
  rb_raise(merror, "%s", error.what());
@@ -23044,6 +23671,10 @@ _wrap_Logger_usage(int argc, VALUE *argv, VALUE self) {
23044
23671
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
23045
23672
  rb_raise(merror, "%s", error.what());
23046
23673
  }
23674
+ catch(qpid::messaging::TransactionUnknown& error) {
23675
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
23676
+ rb_raise(merror, "%s", error.what());
23677
+ }
23047
23678
  catch(qpid::messaging::TransactionError& error) {
23048
23679
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
23049
23680
  rb_raise(merror, "%s", error.what());
@@ -23159,6 +23790,10 @@ _wrap_Logger_setOutput(int argc, VALUE *argv, VALUE self) {
23159
23790
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
23160
23791
  rb_raise(merror, "%s", error.what());
23161
23792
  }
23793
+ catch(qpid::messaging::TransactionUnknown& error) {
23794
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
23795
+ rb_raise(merror, "%s", error.what());
23796
+ }
23162
23797
  catch(qpid::messaging::TransactionError& error) {
23163
23798
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
23164
23799
  rb_raise(merror, "%s", error.what());
@@ -23309,6 +23944,10 @@ _wrap_Logger_log(int argc, VALUE *argv, VALUE self) {
23309
23944
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
23310
23945
  rb_raise(merror, "%s", error.what());
23311
23946
  }
23947
+ catch(qpid::messaging::TransactionUnknown& error) {
23948
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
23949
+ rb_raise(merror, "%s", error.what());
23950
+ }
23312
23951
  catch(qpid::messaging::TransactionError& error) {
23313
23952
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
23314
23953
  rb_raise(merror, "%s", error.what());
@@ -23431,6 +24070,10 @@ _wrap_decodeMap(int argc, VALUE *argv, VALUE self) {
23431
24070
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
23432
24071
  rb_raise(merror, "%s", error.what());
23433
24072
  }
24073
+ catch(qpid::messaging::TransactionUnknown& error) {
24074
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
24075
+ rb_raise(merror, "%s", error.what());
24076
+ }
23434
24077
  catch(qpid::messaging::TransactionError& error) {
23435
24078
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
23436
24079
  rb_raise(merror, "%s", error.what());
@@ -23550,6 +24193,10 @@ _wrap_decodeList(int argc, VALUE *argv, VALUE self) {
23550
24193
  static VALUE merror = rb_define_class("TransactionAborted", eMessagingError);
23551
24194
  rb_raise(merror, "%s", error.what());
23552
24195
  }
24196
+ catch(qpid::messaging::TransactionUnknown& error) {
24197
+ static VALUE merror = rb_define_class("TransactionUnknown", eMessagingError);
24198
+ rb_raise(merror, "%s", error.what());
24199
+ }
23553
24200
  catch(qpid::messaging::TransactionError& error) {
23554
24201
  static VALUE merror = rb_define_class("TransactionError", eMessagingError);
23555
24202
  rb_raise(merror, "%s", error.what());
@@ -23730,7 +24377,7 @@ static swig_cast_info *swig_cast_initial[] = {
23730
24377
  * array with the correct data and linking the correct swig_cast_info
23731
24378
  * structures together.
23732
24379
  *
23733
- * The generated swig_type_info structures are assigned staticly to an initial
24380
+ * The generated swig_type_info structures are assigned statically to an initial
23734
24381
  * array. We just loop through that array, and handle each type individually.
23735
24382
  * First we lookup if this type has been already loaded, and if so, use the
23736
24383
  * loaded structure instead of the generated one. Then we have to fill in the
@@ -23774,7 +24421,7 @@ SWIGRUNTIME void
23774
24421
  SWIG_InitializeModule(void *clientdata) {
23775
24422
  size_t i;
23776
24423
  swig_module_info *module_head, *iter;
23777
- int found, init;
24424
+ int init;
23778
24425
 
23779
24426
  /* check to see if the circular list has been setup, if not, set it up */
23780
24427
  if (swig_module.next==0) {
@@ -23793,22 +24440,18 @@ SWIG_InitializeModule(void *clientdata) {
23793
24440
  /* This is the first module loaded for this interpreter */
23794
24441
  /* so set the swig module into the interpreter */
23795
24442
  SWIG_SetModule(clientdata, &swig_module);
23796
- module_head = &swig_module;
23797
24443
  } else {
23798
24444
  /* the interpreter has loaded a SWIG module, but has it loaded this one? */
23799
- found=0;
23800
24445
  iter=module_head;
23801
24446
  do {
23802
24447
  if (iter==&swig_module) {
23803
- found=1;
23804
- break;
24448
+ /* Our module is already in the list, so there's nothing more to do. */
24449
+ return;
23805
24450
  }
23806
24451
  iter=iter->next;
23807
24452
  } while (iter!= module_head);
23808
24453
 
23809
- /* if the is found in the list, then all is done and we may leave */
23810
- if (found) return;
23811
- /* otherwise we must add out module into the list */
24454
+ /* otherwise we must add our module into the list */
23812
24455
  swig_module.next = module_head->next;
23813
24456
  module_head->next = &swig_module;
23814
24457
  }