1001 - Missing string start token " or '.

Description
As string was expected at the location shown, but a string start token (" or ') was not encountered.
Example
Config:
Alias( name ) // The name should be quoted { }
Output:
c:\Test\fbuild.bff(1):(8) FASTBuild Error #1001 - Alias() - Missing string start token " or '. Alias( name ) ^ \--here
Fix:
Alias( 'name' ) { }