I don't know if this is an issue or not, but I wanted to share.
I have a slice exception that looks like this:
exception CommError {
int err;
};
I've run slice2java on that particular slice file and generated the corresponding java files. When I import it into eclipse, it gives me a warning on the CommError.java file:
"The serializable class CommError does not declare a static final serialVersionUID field of type long."
The program compiles fine and runs great, but I didn't see this listed in the forums anywhere so I thought I'd share in case it might present any issues.

Reply With Quote