This exception is raised when you write raw text in the same line as the tag.
@if(username === 'virk') Hello {{ username }} @endif
@if(username === 'virk') Hello
{{ username }}
@endif
Following is a valid expression
@if(username === 'virk')
Hello {{ username }}
@endif