One Silly SalesForce Internal Server Error
After about a half hour of debugging, I figured out that if you’re calling a method from an inputText VisualForce element, a la
<apex:inputText value=”{!BiteMe}” />
And if that method’s setter is private, exempli gratia
public String BiteMe { get { return ‘gnash snarl’; } private set; }
Then SalesForce will give you an Internal Server Error. Way to [...]