Is there any attribute that I can use, attached to the method definition, that will suppress any exceptions of a certain type originating in that method? e.g.

[SuppressException(typeof(TimeoutException))]
public void TroubleMethod()
{

}

So when there is a TimeoutException, it won't throw outside of TroubleMethod?

link|improve this question

78% accept rate
1  
a bad idea, indeed. something is not right with the design if you want to suppress exceptions (without passing them over or handling them) – Andrei G Feb 24 at 23:43
feedback

5 Answers

up vote 2 down vote accepted

You can use exception handling around the entire method:

public void TroubleMethod()
{
    try {
        // ...
    } catch(TimeoutException) {
        // Throw away
    }
}

I don't think an attribute that does what you describe exists, though. If you want the debugger to step through your method, you can always use [System.Diagnostics.DebuggerStepThrough()], but as for suppressing exceptions, I don't think that's possible.

link|improve this answer
feedback

You can use PostSharp to do some tricky instrumentation to add such attribute.

link|improve this answer
feedback

Not that I am aware of, but you can always do this:

public void TroubleMethod()
{
    try
    {
        // silly code goes here
    }
    catch() { }
}

A bad idea in almost all circumstances, though sometimes acceptable (rare). Just make sure to leave a comment for future maintainers (this includes you).

link|improve this answer
feedback

you could use try-catch to catch the exeptions and just ignore it or better you could respond to that exeption check out the reference

link|improve this answer
feedback

If you really want to do this, you can get a bit closer to your attribute-like syntax with:

static void SuppressException<TException>(Action a) where TException : Exception
{
    try
    {
        a();
    }
    catch (TException) { }
}

 public void TroubleMethod()
 {
     SuppressException<TimeoutException>(() => {
     ...
     }
 }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.