> Hosted mode gives you two windows...the first one will let you see the
> server messages and exceptions.

I know, but there is nothing useable, just this
"[ERROR] 500 - POST <path to my servlet> (127.0.0.1) 57 bytes"

I am a bit closer now, I found that the problem is probably not in the
inheritance.
The code of the InvalidUserRegistrationException is here:

public class InvalidUserRegistrationException extends
UserRegistrationException {

    private List<InvalidUserRegistrationItemException>
invalidUserRegistrationItemExceptions;

    public InvalidUserRegistrationException() {
        super();
    }

    public InvalidUserRegistrationException(String message) {
        super(message);
        this.invalidUserRegistrationItemExceptions =
Collections.unmodifiableList(new
ArrayList<InvalidUserRegistrationItemException>());
    }
}

If I throw InvalidUserRegistrationException("some text") in the
getSomething() method it fails. But if I throw
just InvalidUserRegistrationException() without any text it works.

InvalidUserRegistrationItemException also extends
UserRegistrationException and is very simple, nothing suspicious
inside. Really strange.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to