Hello everyone! I found the next problem at my project: when I doing a method GET - request I got the this exception:
This exception appeared after adding some piece of code to method :
String neededTable = "project_Types" ;
List <KeyValueEntity> = dataManager.loadValues("select t.name,t.id from " + neededTable + " t")
.properties("name","id")
.list();
What I could do wrong?