@@ -234,51 +234,51 @@ final void close() {
234234 }
235235
236236 boolean getBoolean (int rowId ) {
237- throw new UnsupportedOperationException ();
237+ throw new UnsupportedOperationException (getClass (). getName () );
238238 }
239239
240240 byte getByte (int rowId ) {
241- throw new UnsupportedOperationException ();
241+ throw new UnsupportedOperationException (getClass (). getName () );
242242 }
243243
244244 short getShort (int rowId ) {
245- throw new UnsupportedOperationException ();
245+ throw new UnsupportedOperationException (getClass (). getName () );
246246 }
247247
248248 int getInt (int rowId ) {
249- throw new UnsupportedOperationException ();
249+ throw new UnsupportedOperationException (getClass (). getName () );
250250 }
251251
252252 long getLong (int rowId ) {
253- throw new UnsupportedOperationException ();
253+ throw new UnsupportedOperationException (getClass (). getName () );
254254 }
255255
256256 float getFloat (int rowId ) {
257- throw new UnsupportedOperationException ();
257+ throw new UnsupportedOperationException (getClass (). getName () );
258258 }
259259
260260 double getDouble (int rowId ) {
261- throw new UnsupportedOperationException ();
261+ throw new UnsupportedOperationException (getClass (). getName () );
262262 }
263263
264264 Decimal getDecimal (int rowId , int precision , int scale ) {
265- throw new UnsupportedOperationException ();
265+ throw new UnsupportedOperationException (getClass (). getName () );
266266 }
267267
268268 UTF8String getUTF8String (int rowId ) {
269- throw new UnsupportedOperationException ();
269+ throw new UnsupportedOperationException (getClass (). getName () );
270270 }
271271
272272 byte [] getBinary (int rowId ) {
273- throw new UnsupportedOperationException ();
273+ throw new UnsupportedOperationException (getClass (). getName () );
274274 }
275275
276276 ColumnarArray getArray (int rowId ) {
277- throw new UnsupportedOperationException ();
277+ throw new UnsupportedOperationException (getClass (). getName () );
278278 }
279279
280280 ColumnarMap getMap (int rowId ) {
281- throw new UnsupportedOperationException ();
281+ throw new UnsupportedOperationException (getClass (). getName () );
282282 }
283283 }
284284
0 commit comments