JDBC adapter throwing error with source column name

Currently when to try to insert some data to the database using the JDBC adapter and if the value of a particular column is too large the adapter throws the following error
"ORA-01401: inserted value too large for column " ORA-01401: inserted value too large for column "

IS there any way by which we can make the adapter service to throw an error with the name of the source column i.e)it should give the name of the column which is too large to be inserted while throwing an error

This seems to be a normal Oracle DB error and I don’t it will tell you which column exactly is too large.

You may have to log your input data and then compare it with the table definition to figure out which column is having problem with the data that is passed to it for insertion.