List parameter = null;
boolean bolIsError = false;
try{
     parameter = (List) parameterMasterDao.getParameter();
     if (parameter == null){
 bolIsError = true;
 }

catch(DataAccessException e) {
 bolIsError = true;
}
if (bolIsError == true) {
 // Error処理
     return error(MessageCodeList_prov.PAW21_00026);
}