I know that Using statement disposes out the object that is being created. Like if I wanted to do something like this:
Using(SqlConnection conn = new SqlConn
class SqlConnection { using(sqlConnection) { } } class Consumer { try { } catch(SqlException) { } }
It is up to the consumer of the class to decide what to do with the exception.