I get the following error on compile:
An unexpected error occured caused by exception UnexpectedException: While applying class play.classloading.enhancers.PropertiesEnhancer on controllers.xxxxx
I've narrowed it down to the following line in my controller:
String sender_alert_string = "Your message to " + app_user.fullname + " has failed";
With the line, I get the error, without the line, I don't.
I even tried splitting it up into separate strings and then combining them. Also tried .concat()
Why would an attempt to join strings (as I do in many other places) cause this?
EDIT: I'm beginning to think it has something to do with the @Entity tag just before declarations in my model files. Alternatives?
EDIT: app_user is of a basic model type User. constructor below
public User(String app_user_uuid, String fullname, String auth_token) {
//timestamp
Calendar now_time = Application.get_now();
this.time_modified = now_time;
this.time_created = now_time;
//other
this.app_user_uuid = app_user_uuid;
this.fullname = fullname;
this.auth_token = auth_token;
this.timezone_offset = Application.default_timezone_offset;
}