I would like to ignore a specific Type of exception in a group of statements; without having to put empty Try..Catch
es around them.
try{ o1.Update(); } catch (Exceptions.NoChangeMade ex) {}
try{ o2.Update(); } catch (Exceptions.NoChangeMade ex) {}
try{ o3.Update(); } catch (Exceptions.NoChangeMade ex) {}
I would like either a On Error Resume
type way, or a Continue
way within the catch