If I have a method that returns something, like
public DataTable ReturnSomething() { try { //logic here return ds.Tables[0]; } catch (Ex
It depends on you application. You can return null, an empty DataTable or whatever is suitable under circumstances.
null
DataTable