Rob Leachman <[EMAIL PROTECTED]> writes: > Nevermind. Once more I wrote to the list hours too soon. > I just made my own login class and tested isConfirmed > and then handled it. > > Still no clue about how to add an exception but the > answer appears to be "don't".
If you're getting compilation errors when trying to add a "throws" decl to a method signature, you can use an unchecked exception instead (i.e. a sub-class of java.lang.RuntimeException), and leave off the "throws" decl. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
