Hi All

I was under the impression that IsSerializable was depreciated in
favor of Serializable. However, I've just created a new exception
type:

package uk.co.marauder.usermanager.client;

import com.google.gwt.user.client.rpc.IsSerializable;

public class ServerSideException extends RuntimeException implements
IsSerializable
{
        private static final long serialVersionUID = -1005766244333245684L;

        @SuppressWarnings("unused")
        private ServerSideException()
        {}
        
        public ServerSideException(Throwable t)
        {
                super(t);       
        }
}

and it won't serialize across the RPC boundry unless it implements
IsSerializable, Serializable doesn't work.

-- 
Thanks
Paul

Paul Grenyer
e: [email protected]
b: paulgrenyer.blogspot.com
-- 
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