Is any way to find out types of exceptions arise with name method.
For example I use “delete” function of Hbase table to delete some columns and I want to know what exceptions can be arise?
Is any way to find out types of exceptions arise with name method. For
Share
As I understand you right, if you use Eclipse, select your function (delete for example), press F2 and see documentation of current method.
There should be provided Exception type on failure.
Further, you can use try/catch option (sometimes Eclipse creates proper Exception type)
Right click on method -> Surround With