On Mon, 9 Apr 2001, Ricardo Rocha wrote:
> A component implementing Contextualizable may need to assert some
> condition(s) on its context and throw an exception if such condition(s)
> are not met:
>
> public class MyComponent implements Contextualizable {
> . . .
> public void contextualize(Context context) throws ContextException {
> this.requiredComponent = context.get("required");
> if (this.required == null) {
> throw new ContextException("Required component missing in context");
> }
> }
> . . .
> }
>
> What do you think of creating a new ContextException and have the
> contextualize(Context) method throw it?
I think this is a good point so here's my +1 on implementing the
proposed extension to the interface as well as the Exception.
Giacomo
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]