Can anybody help me I am having trouble with this code:

Code:
void getDisplayLifeReviewForHome() {
    	System.err.println ("Can't Find Display Life Review for Home !!! " );
    	
	}
    
    void getDisplayLifeReviewForUser() {
    	System.err.println ("Can't Find Display Life Review for User !!! " );
    	
	}
    
    public String getDisplayLifeReviewForUser( BcSQLAgent agt ) throws Exception
    {
      if (getDisplayLifeReviewForHome( agt ).equals( TRUE )) 
      {
        if (_displayLifeReviewForUser == null) 
        {
          _loadUserValues( agt );
        }
        return _displayLifeReviewForUser;
      }
      else 
      {
        return FALSE;
      }
    }  // getDisplayLifeReviewForUser()
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
It is erroring on
public String getDisplayLifeReviewForUser( BcSQLAgent agt ) throws Exception

and it doesn't matter if I set it to TRUE or FALSE.

Thanks,