3838 puts response
3939rescue TrackingMore ::TrackingMoreException => e
4040 puts " Caught Custom Exception: #{ e.message } "
41+ rescue StandardError => e
42+ puts " Caught Standard Error: #{ e.message } "
4143end
4244
4345```
9496 puts response
9597rescue TrackingMore ::TrackingMoreException => e
9698 puts " Caught Custom Exception: #{ e.message } "
99+ rescue StandardError => e
100+ puts " Caught Standard Error: #{ e.message } "
97101end
98102```
99103
@@ -106,6 +110,8 @@ begin
106110 puts response
107111rescue TrackingMore ::TrackingMoreException => e
108112 puts " Caught Custom Exception: #{ e.message } "
113+ rescue StandardError => e
114+ puts " Caught Standard Error: #{ e.message } "
109115end
110116```
111117
@@ -119,6 +125,8 @@ begin
119125 puts response
120126rescue TrackingMore ::TrackingMoreException => e
121127 puts " Caught Custom Exception: #{ e.message } "
128+ rescue StandardError => e
129+ puts " Caught Standard Error: #{ e.message } "
122130end
123131```
124132
@@ -134,6 +142,8 @@ begin
134142 puts response
135143rescue TrackingMore ::TrackingMoreException => e
136144 puts " Caught Custom Exception: #{ e.message } "
145+ rescue StandardError => e
146+ puts " Caught Standard Error: #{ e.message } "
137147end
138148```
139149
@@ -146,6 +156,8 @@ begin
146156 puts response
147157rescue TrackingMore ::TrackingMoreException => e
148158 puts " Caught Custom Exception: #{ e.message } "
159+ rescue StandardError => e
160+ puts " Caught Standard Error: #{ e.message } "
149161end
150162```
151163
@@ -159,6 +171,8 @@ begin
159171 puts response
160172rescue TrackingMore ::TrackingMoreException => e
161173 puts " Caught Custom Exception: #{ e.message } "
174+ rescue StandardError => e
175+ puts " Caught Standard Error: #{ e.message } "
162176end
163177```
164178
@@ -171,6 +185,8 @@ begin
171185 puts response
172186rescue TrackingMore ::TrackingMoreException => e
173187 puts " Caught Custom Exception: #{ e.message } "
188+ rescue StandardError => e
189+ puts " Caught Standard Error: #{ e.message } "
174190end
175191```
176192
@@ -183,6 +199,8 @@ begin
183199 puts response
184200rescue TrackingMore ::TrackingMoreException => e
185201 puts " Caught Custom Exception: #{ e.message } "
202+ rescue StandardError => e
203+ puts " Caught Standard Error: #{ e.message } "
186204end
187205```
188206## Air Waybill
@@ -195,6 +213,8 @@ begin
195213 puts response
196214rescue TrackingMore ::TrackingMoreException => e
197215 puts " Caught Custom Exception: #{ e.message } "
216+ rescue StandardError => e
217+ puts " Caught Standard Error: #{ e.message } "
198218end
199219```
200220
0 commit comments