hi
i have some class who extends this class
public abstract class UserException extends Throwable implements
IsSerializable {
public UserException() {
}
public UserException(String s) {
super(s);
}
public UserException(String s, Throwable ex) {
super(s, ex);
}
}
when i build my project, i get this warning
UserException is not a checked exception; only checked exceptions may
be used
any idea?
thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---