What are you using for your main build step? Mavent? Ant? Custom script? There are many ways to do it, and it highly depends on the way your .exe is designed, which you didn't explain in the OP.
Easiest would be to add another build step from the drop-down. Select Execute Windows batch command. In there, write batch commands to launch the .exe and capture the return code:
C:\Location_of_exe\your.exe
IF NOT "%ERRORLEVEL%" == "0" (
ECHO "Your exe failed"
EXIT /B 1
) ELSE (
ECHO "Your exe passed"
)
If your .exe works like normal programs, it will return exit code 0 when successful, else it will return a non-zero exit code. The above statement looks for non-zero exit code (indicating failure of some sort), and if detected will exit the batch with error code 1 itself EXIT /B 1. This in turn will indicate to Jenkins that the build step has failed, and will mark the job failed.
Once again, this highly depends on your .exe being correct and returning non-zero exit code on failure.
As far as "I would also like the exe to log some other details", once again, depends entirely on your .exe
Does it return different exit codes for different failures? - If so, the code above can be easily modified to capture all possibilities and display error in log accordingly
Is it a command line .exe that display different errors in console? If that's so, then calling it from the batch will automatically display the errors back in Jenkins log. You can also use this approach if your .exe does not return correct exit codes. You can capture the command line output and use findstr to search for specific output lines there to determine success or failure
If your .exe is a GUI application, and does not generate correct exit codes, then you got no way of telling if it was successful or it failed (and what failed)
I will update this answer if you identify which one it is.