DynamoDBMapper - Failed to instantiate class

Add empty constructor so the call java.lang.Class.newInstance0(Unknown Source) will work:

public PStatus()
{

}

Just figured out the answer. It wasn't quite what I thought, but it ended up being that I had the class in the wrong location. The way they showed it, I was under the impression that it was a sub-class, but PStatus needed to be its own class, file and all. I was trying to sub-class it inside of TestGet and it wasn't liking that. Guess it was more a Java issue I was having than the DBMapper. Still learning!