classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cp-patches] Patch: implemented InvocationEvent.getThrowable


From: Mark Wielaard
Subject: Re: [cp-patches] Patch: implemented InvocationEvent.getThrowable
Date: Tue, 08 Nov 2005 19:22:29 +0100

Hi Tony,

On Mon, 2005-11-07 at 13:29 -0500, Anthony Balkissoon wrote:
> JAPI pointed out that InvocationEvent.getThrowable was missing.  I wrote
> it, which involved a slight tweak of dispatch() as well.
> [...]
> +  /**
> +   * Returns a throwable caught while executing the Runnable's run() method.
> +   * Null if none was thrown or if this InvocationEvent doesn't catch
> +   * throwables.
> +   * @return the caught Throwable
> +   */
> +  public Throwable getThrowable()
> +  {
> +    return throwable;
> +  }

Please add @since 1.5 to such new methods.
Now we have both a throwable and a exception private field. Unless we
need them for serialization it is probably better to collapse them into
one and let getException() do an instanceof Exception.

Cheers,

Mark

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]